How to separate two graphs plotted in one figure into two separate figures?
35 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Soeun Lee
le 6 Août 2021
Réponse apportée : Peter Perkins
le 6 Août 2021
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 commentaires
Réponse acceptée
Dave B
le 6 Août 2021
Modifié(e) : Dave B
le 6 Août 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 commentaires
Plus de réponses (1)
Peter Perkins
le 6 Août 2021
If spikes were two separate variables in a timetable (see splitvars), this would just be stackedplot(neural).
0 commentaires
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!