gnuplot 学习笔记

时间:2021-09-14 18:15:07

1 如何运行

gnuplot是一个命令行输入的工具,把命令行写入一个文本file1 file2。使用下列方式运行。

gnuplot {option} file1 file2

2 产生一个图标,不管数据怎么变化保持不变

gnuplot -persist -e "set title 'Sine curve'; plot sin(x)"

gnuplot 学习笔记

3.画面尺寸 set tem <terminal_type> size <xx>,<yy>. 而画图的大小命令为set size <x>,<y> 当x,y小于1时画图小于整个画布,大于1时只显示数据的一部分

4 坐标

set arrow, set key, set label and set object可以在图中任意位置画。位置坐标的语法是:

{<system>} <x>,{<system>} <y> {,{<system>} <z>}

这里的 system 可以是first(左和下) ,second(上和右), graph(00为左下,11为右上), screen或者character.

5 画正弦 plot sin(5*x).默认100个采样点,采样率较低,更改采样率为500个.set samples 500

然后重画。replot

6.去掉图例 unset key  然后replot生效 加上title : set title "sin(5*x)函数图像"

加上坐标 set xlabel "x"    set ylabel "y" 还是replot生效

设置x坐标范围 set xrange[-2*pi:2*pi]还是replot

设置坐标轴刻度 set xtics pi. set mxtics 2

7 读取文件中的数据并画图

plot  文件名。 文件中的数据x.y按列存放。

默认为点型 ,改成线形加with lines

8 数据文件中含组个数据 命令using选择使用哪个可简写为u,可对数据进行处理,如下例

u 1:($2*3+13),

9.动画

 set term gif animate delay  # time between frame
set output "sinous.gif"
#f(x,t) = sin(x+t)
#set term wxt enhanced
set samples #
set xrange[-*pi:*pi]
unset key
set tics textcolor rgb "orange"
set border lc rgb "orange"
set grid lc rgb "orange"
i = ;
load "looper.gnu"
set output
#for [t = 0:1:100] plot f(x,t);

looper.gnu的内容

 set object  rectangle from screen , to screen , fc rgb "gray10"  behind
plot sin(x+i*pi/) lw lc rgb "green" notitle
i = i+
if (i<) reread

gnuplot 学习笔记