Help For a new type of plot

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 .

 Accepted Answer

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

2 Comments

well i think it's completely different from errorbar . are you sure i can plot this with errorbar ?
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...

Sign in to comment.

More Answers (0)

Asked:

on 20 Oct 2013

Commented:

dpb
on 22 Oct 2013

Community Treasure Hunt

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

Start Hunting!