Polar Plot of radiation efficiency
이전 댓글 표시
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')
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Polar Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
