How can I plot a sphere that is segmented into az-el angles?
Show older comments
I want to plot a sphere with r=1 that is divided into element of 10 degree in azimuth and elevation angle.
Answers (1)
Adam Filion
on 16 Oct 2013
Edited: Adam Filion
on 16 Oct 2013
0 votes
2 Comments
Laila Kazemi
on 16 Oct 2013
Adam Filion
on 16 Oct 2013
You can use sphere to split it into n number of equal parts. So if you want every 10 degrees, thats 360/10=36. For example:
[x,y,z] = sphere(36);
[az,el,r] = cart2sph(x,y,z);
az = rad2deg(az);
az(2,:)
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!