How draw an ellipse by acquiring points in 3D
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Morteza.Moslehi
el 16 de Dic. de 2016
Comentada: Madeleine Foster
el 11 de Mzo. de 2018
Hi. I have solved an Orbital Mechanics question about orbiting and acquired three points about the orbits, for example R1=(-9.5i 6.04j 3.1k)*10^3 and R2=(-9.6i 6.03j 3.4k)*10^3 as you see, the orbits are ellipse. i want to show it in cartesian axis. how can i do this..? should i use plot3 formation ? would you please help me please?
6 comentarios
Adam
el 16 de Dic. de 2016
@Taha Smith. Please reply with comments rather than flagging someone's comment. Flags are used for reporting spam or other inappropriate content.
Respuesta aceptada
Morteza.Moslehi
el 22 de Dic. de 2016
Editada: KSSV
el 22 de Dic. de 2016
1 comentario
Matthew Worker
el 11 de Mzo. de 2018
Hello please could you tell me what y(1),y(2),y(3),y(4) stand for?
Más respuestas (1)
José-Luis
el 16 de Dic. de 2016
Adapt to your needs:
z = [0.5,1];
fx = @(x) sin(x);
fy = @(x) cos(x);
t = linspace(0,2*pi,101);
plot3(fx(t),fy(t),repmat(z(1),1,numel(t)));
hold on
plot3(fx(t),fy(t),repmat(z(2),1,numel(t)));
4 comentarios
Ver también
Categorías
Más información sobre Earth and Planetary Science en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!