simple complex plot of a few points

1 次查看(过去 30 天)
Robert
Robert 2016-11-22
评论: Star Strider 2016-11-22
All i want to do is plot a few points on a complex plot aka the S Plane
If i want to plot a single point at say -2 + 2*sqrt(3)*j how would i go about doing such a thing.

回答(1 个)

KSSV
KSSV 2016-11-22
编辑:KSSV 2016-11-22
z = -2 + 2*sqrt(3)*i ;
plot(z,'.r') ;
or
plot(real(z),imag(z),'.r') ;
  5 个评论
KSSV
KSSV 2016-11-22
plot(real(z),imag(z),'.r') ;
xlabel('Real part')
ylabel('Imaginary part')x
Star Strider
Star Strider 2016-11-22
‘i need the y axis to actually show the dang i or j’
See the documentation for text.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by