| 查看: 875 | 回复: 3 | ||
[求助]
声子计算中路径设置的一些问题
|
|
set encoding iso_8859_15 set terminal postscript enhanced solid color "Helvetica" 20 set output "cdte.dispersions.ps" 请问这三行代码的意思是?还有其他设置吗?在哪里可以看到相关的帮助文件 set key off set xrange [0:4.280239] dim=600 set yrange [0:dim] set arrow from 1,0. to 1,dim nohead lw 2 set arrow from 2,0. to 2,dim nohead lw 2 set arrow from 1.5,0. to 1.5,dim nohead lw 2 set arrow from 3.4142,0. to 3.4142,dim nohead lw 2 set ylabel "frequency (cm^{-1})" unset xtics 这几行代码的意思是?设置了什么?数字表示着什么? lpos=-15 set label "W" at -0.05,lpos set label "L" at 0.95,lpos set label "{/Symbol G}" at 1.45,lpos set label "X" at 1.95,lpos set label "W" at 3.37,lpos set label "K" at 4.1897,lpos lpos什么意思?路径对应的数字是什么?数字代表的是这几个点之间的距离吗? plot "freq.plot" u 1:2 w l lw 3 u 1:2 w l lw 3 是什么意思? |
» 猜你喜欢
085700资源与环境308求调剂
已经有7人回复
265求调剂
已经有5人回复
279分求调剂 一志愿211
已经有3人回复
求调剂
已经有3人回复
一志愿吉林大学材料学硕321求调剂
已经有12人回复
286分人工智能专业请求调剂愿意跨考!
已经有3人回复
329求调剂
已经有5人回复
申请回稿延期一个月,编辑同意了。但系统上的时间没变,给编辑又写邮件了,没回复
已经有4人回复
材料学硕318求调剂
已经有5人回复
一志愿中国海洋大学,生物学,301分,求调剂
已经有6人回复
2楼2017-07-13 10:05:36
3楼2017-11-29 16:56:32
|
这是gnuplot的命令 set encoding iso_8859_15 set terminal postscript enhanced solid color "Helvetica" 20 set output "cdte.dispersions.ps 第一行不清楚,可能是编码,第二是字体,第三个是输出文件名 set xrange [0:4.280239] dim=600 set yrange [0:dim] set arrow from 1,0. to 1,dim nohead lw 2 set arrow from 2,0. to 2,dim nohead lw 2 set arrow from 1.5,0. to 1.5,dim nohead lw 2 set arrow from 3.4142,0. to 3.4142,dim nohead lw 2 set ylabel "frequency (cm^{-1})" unset xtics 这个是设置x和y的范围,dim是个常量.set arrow不知道,set ylabel是设置标签 plot "freq.plot" u 1:2 w l lw 3 最后这句是画图,你看看gnuplot的tutorial吧 |
4楼2018-02-01 21:20:45













回复此楼