Polar plot 0-180 degree with given data
古いコメントを表示
Hey guys,
I need to generate polar coordinates and create this 'sensor beam' that would cover 0 to 180 degrees by 5 degree increase with values varying of (0.0x to 0.x). which means there is ~37 values.
6 件のコメント
Saulius Janusauskas
2018 年 8 月 16 日
Rik
2018 年 8 月 16 日
So like this?
theta=0:5:180;
rho=rand(size(theta))/10;
polarplot(theta,rho)
Saulius Janusauskas
2018 年 8 月 16 日
Rik
2018 年 8 月 16 日
You should provide a clear description of your inputs and the intended output. My code shows you how to have 5 degree jumps. How doesn't that work for you? What code are you trying to apply it to your data? What errors are you getting?
Saulius Janusauskas
2018 年 8 月 16 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Polar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!