Get an yerror plot without a line in Octave
Posted
by
queueoverflow
on Super User
See other posts from Super User
or by queueoverflow
Published on 2012-04-14T11:01:44Z
Indexed on
2012/04/14
11:34 UTC
Read the original article
Hit count: 237
octave
I'd like to print a plot with y-error-bars and just plain points. My current Octave script looks like this:
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
The plot I get has a line, although I specified the .x
style option:
How can I get rid of that line?
And the ylabel is in the scale as well, is there some way to fix that?
© Super User or respective owner