How to separate two graphs plotted in one figure into two separate figures?
41 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi all,
What I am trying to do is to have one plot with the orange graph and another plot with the blue graph. However, right now the orange and blue graphs are being plotted together in one plot. How should I modify my code so that they are no longer plotted together in one plot?
Thanks in advance for your help.
2 Commenti
Risposta accettata
Dave B
il 6 Ago 2021
Modificato: Dave B
il 6 Ago 2021
Is neural.Spikes two columns?
If so:
figure;
nexttile % starting in R2019b, in older versions subplot(1,2,1)
plot(neural.Time,neural.spikes(:,1))
nexttile % starting in R2019b, in older versions subplot(1,2,2)
plot(neural.Time,neural.spikes(:,2))
(If it's two rows, replace the (:,1) with (1,:) and (:,2) with (2,:))
Example:
t = 1:100;
spks = rand(100,2);
nexttile;
plot(t,spks(:,1))
nexttile
plot(t,spks(:,2))
0 Commenti
Più risposte (1)
Peter Perkins
il 6 Ago 2021
If spikes were two separate variables in a timetable (see splitvars), this would just be stackedplot(neural).
0 Commenti
Vedere anche
Categorie
Scopri di più su Line Plots in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!