필터 지우기
필터 지우기

How to plot Radial Coordinate Visualization?

조회 수: 3 (최근 30일)
Harsha M V
Harsha M V 2021년 9월 4일
댓글: Harsha M V 2021년 9월 6일
I have 50x6 matrix, how to plot Radial Coordinate Visualization for 6 objectives?
  댓글 수: 5
Attaullah Shafiq
Attaullah Shafiq 2021년 9월 4일
You can follow this as well
fc = 2.0e9;
crosseddipoleantenna = phased.CrossedDipoleAntennaElement('FrequencyRange',[500,2500]*1e6);
pattern(crosseddipoleantenna,fc,[-180:180],0,...
'Type','powerdb')
c = physconst('LightSpeed');
elemspacing = 0.4*c/fc;
nElements = 11;
array1 = phased.ULA('Element',crosseddipoleantenna,'NumElements',nElements,...
'ElementSpacing',elemspacing,'Taper',taylorwin(nElements)');
pattern(array1,fc,[-180:180],0,'PropagationSpeed',c,...
'Type','powerdb')
radius = 0.028;
width = 1.2e-3;
nturns = 4;
helixantenna = helix('Radius',radius,'Width',width,'Turns',nturns,...
'TiltAxis',[0,1,0],'Tilt',90);
%You can view the shape of the helix antenna use the show function from Antenna Toolbox.
show(helixantenna)
and also
pattern(helixantenna,fc,[-180:180],0,...
'Type','powerdb')
Harsha M V
Harsha M V 2021년 9월 6일
The column represents the performance metrics values.
Basically I need to find pareto fronts of the data and plot it.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Import, Export, and Visualization에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by