English 中文(简体)
a. 在八月份无一线的地块
原标题:Get an yerror plot without a line in Octave
  • 时间:2012-04-14 11:01:44
  •  标签:
  • octave

我只想打印一块带有 y和平原的地块。 我目前的十月文就是这样:

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/2007/04/14/umbrella5.png

我怎么能够摆脱这条线?

yla子也处于规模,是否有办法加以确定?

最佳回答

必须确定行文方式:

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

set(p1, "linestyle", "none");
set(p1, "marker", "+");
问题回答

暂无回答




相关问题
octave: load many functions from single file

How can I put multiple functions in one file and later get access to all of them in the octave interpreter ? I don t want to have a thousand files and want to group functions together. I d like ...

Graph Formatting Tools For Octave

I know that Matlab allows for you to format the graph after its created through the interface. However there isn t the same features in Octave. Is there a tool that goes between Octave and GnuPlot? If ...

How to add vectors with different length?

I would like to add two vectors with different lengths in Matlab or Octave. E.g. aa = [1 2 3 4]; bb = [100 100]; Which should result in a vector cc containing cc = [101 102 3 4] Can anyone figure ...

Octave Errors in attempting to study Image Compression

Let me start by saying I LOVE YOU. Thank you. Next order of business: octave-3.2.3:8> xin = imread( 3Phone.png ); octave-3.2.3:9> colormap(gray(256)); octave-3.2.3:10> image(xin); error: ...

Condensing Stock Data

I have a data set that is composed as such: 2009,11,01,17,00,23,1.471700,1.472000 2009,11,01,17,01,04,1.471600,1.471900 2009,11,01,17,01,09,1.471900,1.472100 2009,11,01,17,01,12,1.472000,1.472300 ...

Computing object statistics from the second central moments

I m currently working on writing a version of the MATLAB RegionProps function for GNU Octave. I have most of it implemented, but I m still struggling with the implementation of a few parts. I had ...

热门标签