MATLAB绘制圆弧玫瑰图上的误差弧

时间:2016-07-20 14:27:50

标签: matlab plot data-visualization matlab-figure rose-diagram

我使用Plot vector (or arc) onto a rose plot. MATLAB上的答案来绘制我的玫瑰图,但我的情节看起来像这样:

Rose plot

我的代码:

circ_plot(BB,'hist',[],20,true,true,'linewidth',2,'color','r')

hold on
plot([0 cos(mean)*a], [0 sin(mean)*a], 'r')  
%// Plot error as many shaded triangles that compose a circular wedge
t = linspace(-Var/2+mean,Var/2+mean,100); %// increase "100" if needed

for k = 1:numel(t)-1
    h = patch([0 cos(t(k))*a cos(t(k+1))*a 0], ...
    [0 sin(t(k))*a sin(t(k+1))*a 0], [.5 0 0], 'edgecolor', 'none');
    %// change color [.5 0 0] to something else if desired. Note also alpha

   set(h,'Facealpha',.3) %// make transparent
end  
%// Place rose on top by rearranging order of axis children
ch = get(gca,'children');
set(gca,'children',[ch(2:end); ch(1)]);

我如何获得错误阴影区域的任何想法都遵循圆的圆周而不是三角形?

由于

1 个答案:

答案 0 :(得分:0)

我不知道为什么,但今天它的工作正常。我没有改变任何事情。感谢您的回复和帮助。不幸的是由于我的数据的敏感性,我无法发布。 再次感谢。