Stairs Command MATLAB Ends
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
sixwwwwww
2013 年 10 月 18 日
編集済み: sixwwwwww
2013 年 10 月 18 日
Dear T,
I think you can do as follows (If i understood correctly)
figure
X = linspace(0,4*pi,40);
Y = sin(X);
stairs(X, Y), hold on
plot(X(end), Y(end), 'ro', 'linewidth', 2)
Or maybe you can use different color for next stairs to see difference between two series.
I hope it helps. Good luck!
16 件のコメント
sixwwwwww
2013 年 10 月 24 日
How you want to change the axis when you plot? Can you provide some screen shots what you need and what are you getting right now?
その他の回答 (1 件)
Azzi Abdelmalek
2013 年 10 月 18 日
編集済み: Azzi Abdelmalek
2013 年 10 月 18 日
x=1:10
y=[0 1 0 1 0 1 0 1 0 1]
stairs(x,y,'k')
hold on
scatter(x,y,'or','linewidth',2)
%you can also change ylim
ylim([0 1.5])
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!