hi every body . i read an article that uses a new type of plot (may be new type for me ) i want to know how can i reproduce it ? any help would be greatly appreciated .

 Akzeptierte Antwort

dpb
dpb am 20 Okt. 2013

0 Stimmen

Looks like an errorbar plot with two columns should do the trick easily...
doc errorbar % for more details, examples...

2 Kommentare

majid
majid am 22 Okt. 2013
well i think it's completely different from errorbar . are you sure i can plot this with errorbar ?
dpb
dpb am 22 Okt. 2013
Why not? It's just two errorbars on the same plot w/ perhaps uneven error values and a dotted line w/ symbols isn't it? The upper ylim cuts off the display of the bars but that's just a figment of the axis limits.
Let's see...
>> x=5:5:50;x=x';
>> y=linspace(270,230,length(x))';
>> y=[y linspace(20,40,length(x))'];
>> e=[y(:,1)*.9 y(:,2)*.8];
>> errorbar([x x],y,e,[':*';':o'])
>> xlim([0 55]), ylim([0 300])
>>
Looks like a pretty good start to me...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Gefragt:

am 20 Okt. 2013

Kommentiert:

dpb
am 22 Okt. 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by