Effacer les filtres
Effacer les filtres

Make colored circle in polar plot

7 vues (au cours des 30 derniers jours)
JZ
JZ le 8 Juil 2021
Commenté : Image Analyst le 12 Juil 2021
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.

Réponses (1)

Image Analyst
Image Analyst le 8 Juil 2021
Maybe you can adapt the attached demo.
  2 commentaires
JZ
JZ le 12 Juil 2021
This is quite neat. Really appreciate that.
I am now thinking of make it simpler. But I prefer to set those color circles w/ different red or blue scaled by different values. Would you please help me out? Thanks!
Image Analyst
Image Analyst le 12 Juil 2021
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);

Connectez-vous pour commenter.

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Produits


Version

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by