Selection of certain angle
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Drishan Poovaya
2021 年 11 月 23 日
It would be helpful if you could attach your data and mention what exactly you want as the output
回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!