标签: gnuplot
是否可以使用gnuplot(4.6)打印(在文件中或通过标准输出重定向)函数的采样点的值。
比方说,如果我用例如plot sin(x)写set samples 20,我想要20行数据给出我将要绘制的计算点的x,y值。
plot sin(x)
set samples 20
我不在乎这些是否真的被绘制过。
我虽然有某种“文字”终端,但似乎没有。
答案 0 :(得分:3)
可以使用set table环境
set table
例如:
set table "outputfile.txt" plot sin(x) unset table