
Make colored circle in polar plot
15 ビュー (過去 30 日間)
古いコメントを表示
Hi there, I need to make colored circle (with different values) in polar plot, looks like below. May anyone help me out? Thanks in advance.

0 件のコメント
回答 (1 件)
Image Analyst
2021 年 7 月 8 日
Maybe you can adapt the attached demo.

2 件のコメント
Image Analyst
2021 年 7 月 12 日
I'd probably use scatter() where you can specify the color of each data point.
numSpots = 50; % Whatever you want.
markerSize = 100; % Whatever you want.
radius = 10; % Whatever you want.
angles = linspace(20, 270, numSpots); % Whatever starting and stopping angles you want.
x = radius * cosd(angles);
y = radius * sind(angles);
% Make up some colors for the data points,
% like one that follows the jet colormap for example.
spotColors = jet(length(x));
% Plot dots in a scatter plot.
scatter(x, y, markerSize, spotColors, 'filled');
grid on;
xlabel('x', 'FontSize', 15);
ylabel('y', 'FontSize', 15);

参考
カテゴリ
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!
