paramteric 3dplot

2 次查看(过去 30 天)
Yeghia Koronian
Yeghia Koronian 2011-3-15
Hello I am having problem in parametric 3D plotting passing additional arguments to it.
for instance z=a*t x=r*cos(b*t) y=r*som(b*t) I am having problem with the syntax of passing the args. and plotting.

回答(1 个)

Matt Tearle
Matt Tearle 2011-3-15
Can you explain more thoroughly what your difficulty is?
t = linspace(0,2*pi);
a = 0.3; b = 2; r = rand;
z = a*t;
x = r*cos(b*t);
y = r*sin(b*t);
plot3(x,y,z)

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by