How can I use cart2pol?
3 ビュー (過去 30 日間)
古いコメントを表示
Hello
cart2pol returns angles between -pi and pi, what I can do to have angles between 0 and 2*pi (0 and 360). thanks
0 件のコメント
採用された回答
Walter Roberson
2012 年 11 月 1 日
mod(theta, 2*pi)
See also the unwrap() function.
3 件のコメント
Walter Roberson
2012 年 11 月 1 日
The mod() is to be applied to the angle in radians, which is what you had asked about. Convert to degrees after you do the mod()
その他の回答 (0 件)
参考
カテゴリ
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!