How to create vector of Objects
古いコメントを表示
I want to put all objects in form of a vector, none of the things I look on the internet doesn't help me to solve my problem, is there anyone can help on how to save them on a single variable, with possible to access back the by referencing them. Just like this vairbale= [radarmotion1 radarmotion2 radarmotion3 radarmotion4 ], you can look from the script below how my objects are created.
radarmotion1 = phased.Platform('InitialPosition',[0;0;0.5],'Velocity',[radar_speed1;0;0]); radarmotion2 = phased.Platform('InitialPosition',[0;0.5;0.5],'Velocity',[radar_speed2;0;0]); radarmotion3 = phased.Platform('InitialPosition',[0.5;0;0.5],'Velocity',[radar_speed3;0;0]); radarmotion4 = phased.Platform('InitialPosition',[0;0.5;1.5],'Velocity',[radar_speed4;0;0]);
Thanks!
1 件のコメント
Jan
2018 年 5 月 7 日
What happens for
A = [radarmotion1 radarmotion2 radarmotion3 radarmotion4]
? Do you get an error message?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Array Geometries and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!