0

我想用 y-error-bars 和简单的点打印一个图。我当前的 Octave 脚本如下所示:

errorbar(x_list, y_list, Delta_y_list, "~.x");
title("physikalisches Pendel");
xlabel("a^2 [m^2]");
ylabel("aT^2 [ms^2]");
print -dpdf plot.pdf

我得到的情节有一条线,虽然我指定了.x样式选项:

http://wstaw.org/m/2012/04/14/umbrella5.png

我怎样才能摆脱那条线?

而且 ylabel 也在比例尺中,有什么方法可以解决这个问题吗?

4

1 回答 1

0

必须设置线型:

p1 = errorbar(plot_x, plot_y, plot_error, "~.k");

set(p1, "linestyle", "none");
set(p1, "marker", "+");
于 2012-08-26T16:20:08.643 回答