How to create vector of Objects

10 visualizaciones (últimos 30 días)
Abebe Haftu Fitur
Abebe Haftu Fitur el 7 de Mayo de 2018
Comentada: Tomas Hindrich el 14 de Abr. de 2020
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 comentario
Jan
Jan el 7 de Mayo de 2018
What happens for
A = [radarmotion1 radarmotion2 radarmotion3 radarmotion4]
? Do you get an error message?

Iniciar sesión para comentar.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 7 de Mayo de 2018
Editada: Ameer Hamza el 7 de Mayo de 2018
You can use a cell array,
variable = {radarmotion1, radarmotion2, radarmotion3, radarmotion4}
Use curly brackets. Access each element also using curly brackets notataion, variable{1}, variable{2}, ...
  2 comentarios
Priya Mittal
Priya Mittal el 4 de Abr. de 2020
So simple. Thank you!
Tomas Hindrich
Tomas Hindrich el 14 de Abr. de 2020
Thank you very much

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Array Geometries and Analysis en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by