Polar Plot of radiation efficiency
Show older comments
I want to Plot Polar plot of two data on same figure with different line styles each time i run the code below, it only bring out same line style, please can anyone help in debugging this?
%% Plot a- MEASURED and SIMULATED E- plane radiation characteristics at 4.02GHz
figure()
P = polarpattern(MEASURED402data(:,2),'TitleBottom','(a) F=4.02 GHz', 'AngleDirection','cw',...
'AngleAtTop',0,'AngleResolution',30, 'MagnitudeLim' ,[-40 2],'ConnectEndpoints',[1],'ColorOrder',co);
hold on
P = polarpattern(SIMULATED402data(:,2),'--');
hold off
legend('E-PLANE MEASURED', 'E - PLANE SIMULATED')
Accepted Answer
More Answers (0)
Categories
Find more on Polar Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!