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!