three dimension plotting...yea

조회 수: 2 (최근 30일)
AngelsaAtWar
AngelsaAtWar 2013년 4월 5일
hi I have this code so far but keep on getting an error when trying to plot it in 3D. I want to plot the equation....exp(i*x)=cos(x)+ (j*sin(x));
code
t = 0:.1:2*pi;
v= exp(i*x)=cos(x)+ (j*sin(x));
plot3(real(v),imag(v),t)
xlabel('x:real(v)')
ylabel('y:imag(v)')
zlabel('t')
grid on
axis square

채택된 답변

the cyclist
the cyclist 2013년 4월 5일
편집: the cyclist 2013년 4월 5일
Your equation has an odd mix of x and t. This works for me:
t = 0:.1:2*pi;
v = cos(t)+ (j*sin(t));
plot3(real(v),imag(v),t)
  댓글 수: 1
AngelsaAtWar
AngelsaAtWar 2013년 4월 5일
It worked thank ya...I guess i just needed to replace the x variable

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

추가 답변 (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