复杂网络——绘图工具gnuplot技巧
一、工具介绍
类似于Matlab绘图,gnuplot能根据txt文件进行绘制图像。比Matlab好用的一点在于,gnuplot能绘制出更高清,曲线更完美的图像。
初次使用时可能有些不理解,需要参考别人写的脚本文件进行使用。
工具下载链接:http://www.gnuplot.info/
具体使用参考资料:马欢-gnu教程
二、实例介绍
比如我们想用脚本绘制一个简单的曲线图
脚本内的代码格式如下:
set terminal pdfcairo enhanced color size 7,6 lw 3 f "Times-Roman, 20"
set output "throsld.pdf"
set xlabel "{/Symbol b}/{/Symbol m}" font "Times-Roman, 20"
set xtics 0.4
set ylabel &#
还没有评论,来说两句吧...