Showing output result in polar coordinate
7 ビュー (過去 30 日間)
古いコメントを表示
When I solve 2 or more equations including complex coefficient(i), the result (root) is shown in rectangular coordinate system (a+bi) by default. But I need to show the result in polar coordinate system (r<θ)[< is used to mean angle sign). How to do this??
0 件のコメント
採用された回答
Walter Roberson
2022 年 8 月 22 日
MATLAB does not provide that as an output format. You will need to create your own function to display the data in the format you want.
If you were working with your own object class then you could build a custom format for it.
3 件のコメント
Steven Lord
2022 年 8 月 22 日
If all you want is to see the data in polar coordinates you could use cart2pol to calculate the coordinates.
x = 3+4i;
[theta, r] = cart2pol(real(x), imag(x))
[re, im] = pol2cart(theta, r)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Polar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!