2

与所有 Gnuplot 条形图示例中的近 99.9% 不同,我没有数据文件,而是想要将其可视化为条形图的函数。

让我们以简单的函数 f(x) = x 为例

我想要一个条形字符,它为 0 到 20 之间的每个 x 值(步长 1)创建一个条形。

因此,我使用了以下代码,但它不会创建 20 个柱 - 它会创建更多(大约 100 个?)。

set xtic 1
set xrange [0:20]
set boxwidth 1
set style fill solid
f(x)=x
plot f(x) with boxes

如何使此条形图正常工作?

4

1 回答 1

4

你想要set samples命令。尝试:

set xtic 1
set xrange [0:20]
set boxwidth 1
set style fill solid
f(x)=x
set samples 21
plot f(x) with boxes
于 2013-01-05T18:59:44.463 回答