Selection of certain angle
7 views (last 30 days)
Show older comments
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 Comment
Drishan Poovaya
on 23 Nov 2021
It would be helpful if you could attach your data and mention what exactly you want as the output
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!