step method of phased.URA: where is my phaseshift?!
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I want to get the sensor array complex response ratios from an angle. I try to use phased.URA.step(freq, angle), but it gives me equal numbers for each element for any angle.
Here is a small example:
ant_array = phased.URA();
disp(ant_array.step(3e8, [45; 0]));
It gives me a result:
1
1
1
1
Can anyone tell me, what does it mean and how can I use angle parameter correctly?
0 Commenti
Risposte (1)
Honglei Chen
il 27 Mag 2015
The return you see is the response of each element at the specified degree. There is no phase shift between them. If you want to see the phase shifts between them, you can use SteeringVector, e.g.,
ant_array = phased.URA();
stv = phased.SteeringVector('SensorArray',ant_array);
disp(stv.step(3e8,[45;0]))
0 Commenti
Vedere anche
Categorie
Scopri di più su Array Geometries and Analysis in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!