Shifted Stairstep graphs in a single figure
1 view (last 30 days)
Show older comments
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 Comments
Answers (1)
KALYAN ACHARJYA
on 10 Oct 2019
Edited: KALYAN ACHARJYA
on 10 Oct 2019
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 Comments
See Also
Categories
Find more on Graph and Network Algorithms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!