Multiple plot 'slides' on the same graph
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Is there a way to combine multiple plots on the same graph in this way in MATLAB? I can generate each of these plots seperately, but I would like to combine them in one picture in the same way shown in the attached picture.

0 commentaires
Réponse acceptée
DGM
le 7 Juin 2022
You can use plot3(), but you'll have to configure your data according to what plot3() expects.
% some placeholder data
% g is a 2D array with individual series arranged as columns
x = -20:20;
sigma = linspace(3,5,10);
[yy xx] = meshgrid(sigma,x);
g = exp(-(xx./(1.414*yy)).^2);
plot3(xx,yy,g)
grid on
view(19,16)
Alternatively, you can just plot each series in a call to plot3() in a loop or something.
If you actually want an oblique projection like that, good luck. Oblique projections aren't supported. There is obliqueview() on the File Exchange, but parts of what it relies upon simply don't work anymore and would need to be rewritten.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
