3D surface plotting
Afficher commentaires plus anciens
Is it possible to plot a surface out of 3 vectors? r= [3 4 5 9 7 8 10 15 14] p= [4 1 7 8 21 5 6 10 7] v= 2*r.^2+2*p.^2; surf and mesh works for the case when v is a matrix not a vector!
Réponses (1)
KSSV
le 26 Juin 2017
r= [3 4 5 9 7 8 10 15 14];
p= [4 1 7 8 21 5 6 10 7] ;
[R,P]=meshgrid(r,p);
V= 2*R.^2+2*P.^2 ;
surf(R,P,V)
Catégories
En savoir plus sur Surface and Mesh Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!