如何输出平滑的cspline曲线作为数据文件

时间:2015-05-27 06:22:39

标签: output gnuplot smooth

有人知道如何为给定数据提取平滑cspline曲线的一些数据吗?

例如,有一个数据文件有2列对应x和y值。我可以通过以下命令用平滑的cpline曲线绘制数据

{{1}}

我想将平滑的cpline曲线提取为另一个数据文件。

2 个答案:

答案 0 :(得分:13)

这可以通过设置table来完成。请考虑以下数据文件:

0 1
1 2
2 3
3 2
4 2
5 4
6 8
7 5
8 3
9 1

数据本身及其csplines插值如下所示:

enter image description here

要将插值打印到表格,请执行以下操作:

set samples 100
set table "table_100"
plot "data" smooth csplines
set samples 20
set table "table_20"
plot "data" smooth csplines
unset table

set samples确定用于构造样条曲线的点数。你可以想象它:

set key left
plot "data" pt 7 t "Original data", \
     "table_100" w l t "Splines (100 samples)", \
     "table_20" w l t "Splines (20 samples)"

enter image description here

答案 1 :(得分:5)

使用set table 'temp.dat'将绘制的数据点重定向到外部文件

set table 'temp.dat'
plot 'myfile.dat' using 1:2 smooth cspline
unset table

测试它

plot 'myfile.dat' using 1:2 with points title 'original points',\
     'temp.dat' using 1:2 with lines title 'smoothed curve'