極座標のヒストグラムを作製
5 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Akira Agata
2020-10-12
polarhistogram 関数を使うと極座標でのヒストグラムを作成できます。
たとえば8等分した角度ごとの測定値をプロットする場合、以下のようになるかと思います。
% 8等分した角度(theta)と測定値(val)の模擬データ
theta = 0:45:315;
val = randi(100,1,8);
figure
polarhistogram(...
'BinEdges', [deg2rad(theta),2*pi],...
'BinCounts',val)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!