I want to draw a transparent sphere with three X Y Z and some curves inside it

34 visualizaciones (últimos 30 días)
I want to draw a transparent sphere of poincare with three X Y Z and some curves inside it
i did it with hand in the attached file
I need your help
thank you very much

Respuestas (1)

Dave B
Dave B el 8 de Oct. de 2021
How about something like this (I'm including the code to draw some circles around the sphere, a couple of different ways, but I'll leave it to you to do the geometry):
[x,y,z]=sphere;
surf(x,y,z,'FaceAlpha',.3,'EdgeColor','none');
hold on
plot3(x(z==0),y(z==0),z(z==0),'k--','LineWidth',2)
[x2,y2,z2]=sph2cart(linspace(0,2*pi,100),-pi/7,1);
plot3(x2,y2,repelem(z2,100),'k--','LineWidth',2)
axis equal
  8 comentarios
DGM
DGM el 9 de Oct. de 2021
I intentionally didn't align the rectangle and left things incomplete because I'm not inclined to do everything. I'm providing examples of how the various elements can be constructed.
walid albugami
walid albugami el 10 de Oct. de 2021
i tried to change some parameters before i sent my last comments but it didn't work with me, if you know juste tell me please only what i have to change and i will do it.
thank you very much

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by