Generate portion of circular array elements
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Chen
am 8 Dez. 2017
Beantwortet: Honglei Chen
am 8 Dez. 2017
Is there way to generate a equal spacing array which is a part of a circular array? Or Can you use a portion elements in a circular array generated by phased.UCA? For example elements [9 10 11 1 2 3] in the circular array
.
0 Kommentare
Akzeptierte Antwort
Honglei Chen
am 8 Dez. 2017
You can do both. You can either compute the position and normal of these elements and put them in a ConformalArray, see the first example here
Or if you want to plot a pattern, you can pass in a weights and put ones and zeros in it to indicate which element is active, like
array = phased.UCA(11);
pattern(array,1e9,'Weights',[ones(3,1); zeros(5,1); ones(3,1)]);
HTH
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Array Geometries and Analysis finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!