Info
此问题已关闭。 请重新打开它进行编辑或回答。
could anybody help me how can I draw one complex number through a variable which is integers in (-pi, pi) interval.
1 次查看(过去 30 天)
显示 更早的评论
I have a complex number and I want to graph this number according to variable integer.
1 个评论
回答(1 个)
Azzi Abdelmalek
2013-11-24
If you want to represent a complex number graphically
a=1+2*i
scatter(real(a),imag(a))
2 个评论
Azzi Abdelmalek
2013-11-24
a=-pi:0.01:pi
z=25+j*tan (2*pi*a/0.3)
scatter(25*ones(size(a)),tan(2*pi*a/0.3))
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!