Need help with 3-d graph
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!