Gnuplot 是适用于 Linux、OS/2、MS Windows、OSX、VMS 和许多其他平台的便携式命令行驱动图形实用程序。 源代码受版权保护但可以自由分发(即,无需为此付费)。 它最初是为了让科学家和学生以交互方式可视化数学函数和数据而创建的,但现在已经发展为支持许多非交互用途,例如 Web 脚本。 它也被 Octave 等第三方应用程序用作绘图引擎。 自 1986 年以来,Gnuplot 一直受到支持并正在积极开发中。
1 .Linux gnuplot 安装
Sudo apt-get install gnuplot
2.gnupplot的基本使用
2.1 启动
$ gnuplot
G N U P L O T
Version 5.0 patchlevel 3 last modified 2016-02-21
Copyright (C) 1986-1993, 1998, 2004, 2007-2016
Thomas Williams, Colin Kelley and many others
gnuplot home: http://www.gnuplot.info
faq, bugs, etc: type "help FAQ"
immediate help: type "help" (plot window: hit 'h')
Terminal type set to 'qt'
2.2 绘制sine
gnuplot> plot sin(x)
2.3 加载文件绘图
文件内容
plot "l.txt" w l
2.4设置坐标轴和图像名称
gnuplot>
gnuplot> set title 'graph'
gnuplot> set xlabel 'times'
gnuplot> set ylabel 'result'
gnuplot> plot 'l.txt' w l
gnuplot>
2.5限制范围
绘制一个-pi到pi的sine
gnuplot> plot [-pi:pi] sin(x)
2.6 3D绘图
splot [-pi:pi] [-pi:pi] sin(x)*cos(y)
2.7 文件输出png
gnuplot> set terminal png
Terminal type set to ‘png’
Options are 'nocrop enhanced size 640,480 font “/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf,12” ’
gnuplot> set output ‘3d.png’
gnuplot> splot [-pi:pi] [-pi:pi] sin(x)*sin(y)
gnuplot>