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 Center および File Exchange2-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