How can I plot a sphere that is segmented into az-el angles?

6 visualizaciones (últimos 30 días)
Laila Kazemi
Laila Kazemi el 16 de Oct. de 2013
Comentada: Adam Filion el 16 de Oct. de 2013
I want to plot a sphere with r=1 that is divided into element of 10 degree in azimuth and elevation angle.

Respuestas (1)

Adam Filion
Adam Filion el 16 de Oct. de 2013
Editada: Adam Filion el 16 de Oct. de 2013
Use the sphere command.
There's also the related sph2cart for converting azimuth, elevation and radius to x,y,z.
  2 comentarios
Laila Kazemi
Laila Kazemi el 16 de Oct. de 2013
the sphere command does not cut the sphere to the dimensions I want
Adam Filion
Adam Filion el 16 de Oct. de 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,:)

Iniciar sesión para comentar.

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by