Info

この質問は閉じられています。 編集または回答するには再度開いてください。

could anybody help me how can I draw one complex number through a variable which is integers in (-pi, pi) interval.

1 回表示 (過去 30 日間)
Onur PEKER
Onur PEKER 2013 年 11 月 24 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have a complex number and I want to graph this number according to variable integer.

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 11 月 24 日
If you want to represent a complex number graphically
a=1+2*i
scatter(real(a),imag(a))
  2 件のコメント
Onur PEKER
Onur PEKER 2013 年 11 月 24 日
Thanks for your answer. This is the question; i have complex equation like z=25+j*tan (2*pi*a/0.3) and a is variable. And i want to graph z to a.
Azzi Abdelmalek
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!

Translated by