How to plot Radial Coordinate Visualization?
Ältere Kommentare anzeigen
I have 50x6 matrix, how to plot Radial Coordinate Visualization for 6 objectives?
5 Kommentare
Chunru
am 4 Sep. 2021
Can you show your data? What is "Radial Coordinate Visualization for 6 objectives"? Does it mean polar plot?
Harsha M V
am 4 Sep. 2021
Chunru
am 4 Sep. 2021
What are those data meaning? How do they relate to the plot shown?
Attaullah Shafiq
am 4 Sep. 2021
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
am 6 Sep. 2021
Antworten (0)
Kategorien
Mehr zu Beamforming and Direction of Arrival Estimation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
