I want to sketch the parametric euqations lies on the cone, but the cone is so small and the lines are sparser than it should be.

5 vues (au cours des 30 derniers jours)
parametric euqations is x=tcost, y=tsint, z=t
and the euqation of the cone is z^2=x^2+y^2
my code looks like this
t=linspace(-2*pi,2*pi,100);
x=t.*cos(t);
y=t.*sin(t);
z=t;
plot3(x,y,z);
hold on;
u=linspace(-2*pi,2*pi,100);
v=linspace(-2*pi,2*pi,100);
[u,v]=meshgrid(u,v);
x=cos(u).*sin(v);
y=cos(u).*cos(v);
z=cos(u);
surf(x,y,z)
I can't find any mistake in my code.
Answer is that the line should be denser.
What is the problem of my code?
I appreciate any help. Thank you.

Réponse acceptée

Star Strider
Star Strider le 19 Sep 2020
Scale the size of the cone up by multiplying its variables with some appropriate constant (that I call a ‘Magnification Factor’ here).
Example —
t=linspace(-2*pi,2*pi,100);
x=t.*cos(t);
y=t.*sin(t);
z=t;
plot3(x,y,z, '-r', 'LineWidth',2);
hold on;
u=linspace(-2*pi,2*pi,100);
v=linspace(-2*pi,2*pi,100);
[u,v]=meshgrid(u,v);
x=cos(u).*sin(v);
y=cos(u).*cos(v);
z=cos(u);
mf = 6; % ‘Magnification Factor’
surf(x*mf,y*mf,z*mf, 'EdgeColor','none')
grid on
axis('equal')
producing:
.
  4 commentaires
수정 이
수정 이 le 24 Sep 2020
Thank you very much. I really aprreciate your help!
I understood it finally.
Have a nice day :)

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by