simple complex plot of a few points

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 日

0 投票

z = -2 + 2*sqrt(3)*i ;
plot(z,'.r') ;
or
plot(real(z),imag(z),'.r') ;

5 件のコメント

Robert
Robert 2016 年 11 月 22 日
This i not showing me that its complex Its just on a regular plane with no label of i or j for the imaginary axis which does me no good and is really the same as plotting -2+2*sqrt(3)
Star Strider
Star Strider 2016 年 11 月 22 日
KSSV is correct.
You should actually be plotting:
z = [-2 + 2*sqrt(3)*j; conj(-2 + 2*sqrt(3)*j)];
because complex quantities always appear in complex-conjugate pairs.
By convention, the real axis is the x-axis and the imaginary axis is the ±y axis. (Positive real parts indicate an unstable system, so the positive part of the x axis is characteristically not plotted.)
Robert
Robert 2016 年 11 月 22 日
i need the y axis to actually show the dang i or j
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.

サインインしてコメントする。

カテゴリ

タグ

質問済み:

2016 年 11 月 22 日

コメント済み:

2016 年 11 月 22 日

Community Treasure Hunt

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

Start Hunting!

Translated by