I want to plot multiple graphs in a single plot with some space between each signal
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to plot multiple graphs in a single plot with some space between each signal
7 Kommentare
Walter Roberson
am 14 Sep. 2018
Have a look at the new stackedplot() https://www.mathworks.com/help/matlab/ref/stackedplot.html . This may require using a table object
jonas
am 14 Sep. 2018
I mean, the figure you uploaded is literally taken from the doc on stackedplot, so try it :)
Antworten (1)
KSSV
am 14 Sep. 2018
How about adding some number to the y values and plotting?
A = rand(10,10) ;
figure
hold on
x = 1:10 ;
for i = 1:10
plot(x,A(i,:)+i)
end
6 Kommentare
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!