How can i ploting 3 function with 2 variables?

조회 수: 3 (최근 30일)
mostafa
mostafa 2014년 4월 15일
댓글: mostafa 2014년 4월 15일
Hi i have 3 function like this
x1=(5+sin(w1*t))*cos(w2*t), x2=(5+sin(w1*t))*sin(w2*t), x3=cos(w1*t)
the t variable is not important for me but w1 and w2 is change like this
w1/w2=4, w1/w2=0.25, w1/w2=5 ....
i want to plot this 3 function in 3D but i cant!!!!!!
  댓글 수: 6
Patrik Ek
Patrik Ek 2014년 4월 15일
Ok, the largest error is that t is always equal to 0. Why you plot a point on the same place 20 times: but changing t to t = 1 and looking at the graph, makes still no sense to me. It may do for you, but if you do not mind, what are you trying to plot. You should check the help, but what you are doing is not plotting 3 grahps in 3d, but plotting one graph with the coordinate x1, x2, x3 (x,y,z). You said t is not important, but why is it used then?
mostafa
mostafa 2014년 4월 15일
편집: mostafa 2014년 4월 15일
thank u for your respond Patrik. i meant that the t variable is not important for me not the whole. i think by saying that i need the points i made a mistake. these functions should give me curve. its about chaos and non linearity dynamics. by the way the t variable should grow not being a constant.

댓글을 달려면 로그인하십시오.

채택된 답변

Patrik Ek
Patrik Ek 2014년 4월 15일
Ok this seems to give some chaotic pattern.
t = 0:0.01:2*pi;
w2=linspace(0,20,length(t));
w1=4*w2;
m=w1.*t;
n=w2.*t;
x1=(5+sin(m)).*cos(n);
x2=(5+sin(m)).*sin(n);
x3=cos(m);
plot3(x1,x2,x3);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by