Polar coordinate plot with color
8 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Walter Roberson
2012-1-22
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?
更多回答(0 个)
另请参阅
类别
在 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!