Afficher commentaires plus anciens
Hi guys,
There are two struct arrays, A, B; They both have a member data called "id". For example: A(1).id = []; A(2).id = [] B(1).id = 'hello'; B(2).id = 'yes';
I'd like to copy the "id" of B to A without using loop.
Is there any method?
Thanks
1 commentaire
Fangjun Jiang
le 22 Sep 2011
help deal, among a few other solutions.
Réponse acceptée
Plus de réponses (1)
Daniel Shub
le 22 Sep 2011
Does this work?
[A(:).id] = B(:).id
Catégories
En savoir plus sur Structures dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!