Can I plot three different group of signals in one XY plane?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
632541
am 3 Feb. 2021
Kommentiert: Cris LaPierre
am 4 Feb. 2021
Can I plot three different group of signals in one XY plane?
Like,
First 5 signals in one plot which can be overlapped ,
6th is in one plot just below 5 signals
7-11(next 5) in other plot(overlapped) ,just below the 6th.
Can I plot these type of plots in one XY plane?
0 Kommentare
Akzeptierte Antwort
Cris LaPierre
am 3 Feb. 2021
Not sure I fully understand what you want. It sounds like you want 3 separate plots in a single figure? If so, look at tiledlayout.
x = linspace(0,30);
t = tiledlayout(3,1);
% Tile 1
nexttile
hold on
plot(x,sin(x))
plot(x,sin(x/4))
hold off
% Tile 2
nexttile
plot(x,sin(x/2))
% Tile 3
nexttile
hold on
plot(x,sin(x/3))
plot(x,cos(x))
hold off
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spectral Measurements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!