Azzera filtri
Azzera filtri

Plot multiple data in one plot using for loop

3 visualizzazioni (ultimi 30 giorni)
I want to plot these 8 time series using for loop but it plots just the last one alone.
for i=1:8
plot(x,y{i},'LineWidth',2);
hold on
end
hold off

Risposta accettata

madhan ravi
madhan ravi il 17 Feb 2019
Modificato: madhan ravi il 17 Feb 2019
If you look the data in each cell closely infact they are all the same so all the plots overlap each other:
plot(x,[y{:}]) % you don't need a loop
  1 Commento
madhan ravi
madhan ravi il 17 Feb 2019
To check if each cell are same:
isequal(y{:}) % if returns one then they are all the same [resulting with just one plot]

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by