11

我有一些 gnuplot 代码如下:

gnuplot> h=1
gnuplot> a=2
gnuplot> set print "additional numbers.txt"
gnuplot> print h,a
gnuplot> set print

现在我想在不覆盖之前的条目的情况下向这个文件添加更多数据。我可以在 C 中完成,但我想将所有内容保存在 1 个可以通过 gnuplot 运行的脚本中

我希望你能帮忙。

4

1 回答 1

13

使用append标志:

set print "additional_numbers.txt" append
于 2012-11-02T13:57:52.927 回答