how to create an array of pedestrians using backsactterpedestrian?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
the function 'backscatterpedestrian' creates a pedestrian object, if I want to create N pedestrians, how should I create an pedestrian array? Many thanks!
0 commentaires
Réponse acceptée
Ameer Hamza
le 19 Avr 2020
Modifié(e) : Ameer Hamza
le 19 Avr 2020
Use repmat() to create an array
N = 10;
A = repmat(backscatterpedestrian, 1, N);
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Radar and EW Systems dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!