How to draw a radar search volume in 3D?
7 次查看(过去 30 天)
显示 更早的评论
Hello,
I am a newbie trying to draw a 120-degree radar search volume in 3D without using syms. Any idea how?
https://kr.mathworks.com/help/symbolic/transform-spherical-coordinates-and-plot.html
syms phi theta
r = 4;
x = r*sin(phi)*cos(theta);
y = r*sin(phi)*sin(theta);
z = r*cos(phi);
fsurf(x,y,z,[0 pi/2 0 2*pi])
axis equal
0 个评论
采纳的回答
Benjamin Kraus
2024-2-6
编辑:Benjamin Kraus
2024-2-6
You are on the right track.
To start with, you can use fsurf without needing to use symbolic expressions, you just need to switch to using either anonymous functions or function handles.
r = 4;
x = @(phi, theta) r.*sin(phi).*cos(theta);
y = @(phi, theta) r.*sin(phi).*sin(theta);
z = @(phi, theta) r.*cos(phi);
fsurf(x,y,z,[0 pi/2 0 2*pi])
However, I don't think those are the right equations for what you want to draw.
I believe you want to fix phi and vary both r and theta. I believe this may be closer to what you are looking for.
Note that I switched x and z so that the cone was on it's side.
figure
phi = deg2rad(60);
x = @(r, theta) r.*cos(phi);
y = @(r, theta) r.*sin(phi).*sin(theta);
z = @(r, theta) r.*sin(phi).*cos(theta);
fsurf(x,y,z,[0 4 0 2*pi])
3 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!