three dimension plotting...yea
2 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
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)
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!