在Octave中获取没有线的yerror图

时间:2012-04-14 11:01:45

标签: octave

我想用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也在规模上,是否有某种方法可以解决这个问题?

1 个答案:

答案 0 :(得分:0)

必须设置linestyle:

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

set(p1, "linestyle", "none");
set(p1, "marker", "+");