Plotting Time Sequence in MATLAB

1 view (last 30 days)
AB
AB on 20 Nov 2019
Edited: KALYAN ACHARJYA on 20 Nov 2019
How can I plot a time sequence, something like this?
Taken from Page 145 of https://core.ac.uk/download/pdf/19162407.pdf

Answers (1)

KALYAN ACHARJYA
KALYAN ACHARJYA on 20 Nov 2019
Edited: KALYAN ACHARJYA on 20 Nov 2019
Is this way?
x=1:16;
y=linspace(0,1,16);
plot(x,y,'Db','linewidth',5);
hold on;
plot(x(1:5)+10,y(1:5),'Db','linewidth',5);
345.png

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!