以下代码完美执行:
do for [i=1:$M_Orbs]{
set table 'L_z_'.i.'.dat'
plot [0:250] "L_z_expectation.dat" u 1:2+2*((i-1)*$M_Orbs+i) smooth cspline w l
unset table
set table 'Nocc_'.i.'.dat'
plot [0:250] "NO_PR.out" u 1:2+$M_Orbs-i smooth cspline t 'M='.i w l
unset table
}
但是当我尝试使用粘贴命令将这些文件组合在一个循环中时,我遇到了麻烦:
plot for [i=1:$M_Orbs] '< paste 'L_z_'.i.'.dat' 'Nocc_'.i.'.dat'' u 1:(\$2*\$5)
这条线带来了错误,
plot for [i=1:2] '< paste 'L_z_'.i.'.dat' 'Nocc_'.i.'.dat'' u 1:($2*$5)
^
line 0: x range is invalid
我很确定会发生错误,因为 gnuplot 在将 i 分配给 for 循环中的值之前尝试执行粘贴命令。是否有另一种逃避 i 的方法,或者至少以另一种方式实现相同的想法?