Polar coordinate plot with color
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi all,
I am trying to create points on the polar grid and color code each point. The MATLAB polar function allows one color per call, so I am looping roughly 15,000 times to generate the figure I need.
The section of code below takes 20 minutes to execute. Are there ways to make this code more time efficient given the limitation of the polar function?
David
%-------------------------
% polar plots
map=colormap; close
theta = phase1(mask).*pi/180;
rho = amplitude1(mask);
gof = gof1(mask);
ccode = round(gof*63+1);
%-------------------------
for i=1:length(theta) %15,000
if i==1
figure
h = polar(theta(i),rho(i),'o');
set(h, 'MarkerFaceColor', map(ccode(i),:));
else
h = polar(theta(i),rho(i),'o');
set(h, 'MarkerFaceColor', map(ccode(i),:));
end
end
%-------------------------
0 comentarios
Respuesta aceptada
Walter Roberson
el 22 de En. de 2012
Is your code perhaps missing a "hold on" ?
Could you polar() once to get the background, hold on, then scatter() of pol2cart() of everything at once to draw the points?
The first point you should polar() should be the one with the largest rho so that you get the rings drawn correctly.
By the way, with the code you have, why not call figure once first before the loop, and then your loop would not need any "if" statement?
Más respuestas (0)
Ver también
Categorías
Más información sobre Polar Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!