
GNUplot
ims-
!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
gnuplot 的linetype线型颜色选择
set xlabel 'sample' set ylabel 'value' set title 'linetype' set xrange [0:5] f(x)=-1 f0(x)=0 f1(x)=1 f2(x)=2 f3(x)=3 f4(x)=4 f5(x)=5 f6(x)=6 f7(x)=7 f8(x)=8 f9(x)=9 f10(x)=10 f11(x原创 2017-05-13 11:36:03 · 2944 阅读 · 0 评论 -
python调用gnuplot
#! /usr/bin/python3.5 from subprocess import * gnuplot= Popen('gnuplot',stdin = PIPE, stderr=PIPE,stdout=PIPE) #gnuplot.stdin .write(b"set terminal jpeg \n") #gnuplot.stdin .write(b"set out原创 2017-05-13 16:47:23 · 4103 阅读 · 0 评论