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 .

 採用された回答

dpb
dpb 2013 年 10 月 20 日

0 投票

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

2 件のコメント

majid
majid 2013 年 10 月 22 日
well i think it's completely different from errorbar . are you sure i can plot this with errorbar ?
dpb
dpb 2013 年 10 月 22 日
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...

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeErrorbars についてさらに検索

質問済み:

2013 年 10 月 20 日

コメント済み:

dpb
2013 年 10 月 22 日

Community Treasure Hunt

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

Start Hunting!

Translated by