Shifted Stairstep graphs in a single figure
조회 수: 1 (최근 30일)
이전 댓글 표시
Good morning,
I should draw 100 stairstep curves in a single graph with x-axis from 0 to 100, where each curve is shifted by 1. How could I do?
Thank You for your time.
S.V.
댓글 수: 0
답변 (1개)
KALYAN ACHARJYA
2019년 10월 10일
편집: KALYAN ACHARJYA
2019년 10월 10일
Is this?
for j=1:100
stairs(j:j:100);
hold on;
end
Or
for j=1:100
stairs(j:j+1:100);
hold on;
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!