Selection of certain angle
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
uiimport("RX1TX1.mr")
k=1;
for i=1:1306
if Receiver.AOA_elevation(i)>0 && Receiver.AOA_elevation(i)<60
if Receiver.AOA_azimuth(i)>0 && Reciver_AOA_azimuth(i)<60
selected_rays.power(k)=Receiver.power(i);
selected_rays.AOA_azimuth(k)=Receiver.AOAazimuth(i);
selected_rays.AOA_elevatioin(k)=Receiver.AOAelevation(i);
end
end
k=k+1;
end
I have written a code in which it has to consider the values of the rays in only certain angle and give me all the details of the rays which fall in the angle .but i'm unable to get the output.please help me in this regard.
1 commentaire
Drishan Poovaya
le 23 Nov 2021
It would be helpful if you could attach your data and mention what exactly you want as the output
Réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!