0

我无法理解如何在Gnuplot不编写输入文件的情况下绘制耦合数据。

假设我有这种格式的数据:

(x_val, y_val)

我想做类似的事情:

x <- [x_val_1, x_val_2, ... x_val_n]
y <- [y_val_1, y_val_2, ... y_val_n]
plot x y

是否可以?我怎样才能做到这一点?

4

1 回答 1

1

如果我理解正确,您可以使用 gnuplot 的"-"伪数据文件:

#for documentation, refer to 
# `help plot datafile special-filenames` 
#  at the gnuplot prompt
plot '-' w points
  1 2
  3 4
  5 6
  7 8
  9 10
  11 12
  e

如果您尝试使用 gnuplot 来计算点数,那么这是行不通的。根据您计算点的方式,您可以将其绘制在参数曲线上。

于 2012-10-15T11:58:47.273 回答