Need help with 3-d graph
Afficher commentaires plus anciens
Its 3-d surface, where source is in z axis, perpendicular to XY plane. I have theta (angle made by point p(r,theta)), r radius , and k=data points(11 by 73). there are other funcction beta=2*atan(1.5./r); another function G= beta./(4*r.*sin(theta)); another function t=.5.*r-.145*r.^2; now final function F= G.*t.*k
theta=linspace(0,2*pi,73);
r=linspace(0,50,11);
[theta,r]=meshgrid(theta,r);
k=(11by73) data;
G= beta./(4*r.*sin(theta))
t=.5.*r-.145*r.^2;
F= G.*t.*k;
How do I convert this to cartesian and make a 3-d or surface plots
Réponse acceptée
Plus de réponses (0)
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!