Plotting 3D- matrix values against other 3D-matrix values
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi! I have two 3D matrices with the same size, x and y. I want to plot the values of y against the values of x. How can I do it?
0 commentaires
Réponse acceptée
B Mohandes
le 10 Nov 2016
you don't care about the fact that the matrices are 3D or not. you might as well convert the matrices to a vector, as long as you're plotting each point in x against each point in y. hence: plot(x(:),y(:)); %should do the trick
------------------------- prayers for syria
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations 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!