convert real numbers to img form
1 回表示 (過去 30 日間)
古いコメントを表示
hi.i have real number which i want to convert t img form. how can i do this?
e.g: 8 to 8i
tnx
0 件のコメント
回答 (1 件)
Chunru
2021 年 11 月 26 日
a = 8
b = a*1i % method 1
c = complex(0, a) % method 2
1 件のコメント
John D'Errico
2021 年 11 月 26 日
編集済み: John D'Errico
2021 年 11 月 26 日
+1 of course, as this seems to cover the bases completely.
I would only add that MATLAB does not have a purely imaginary form, only a complex form. Since the OP seems to be hoping to see a number of the form 8i, they may become confused when seeing a zero real part displayed. If the real part is zero, then the result is purely imaginary.
参考
カテゴリ
Help Center および File Exchange で Dates and Time についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!