How to save fields of a struct through for loop iteration.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Habtamu Tesfaw
il 16 Mag 2020
Commentato: Habtamu Tesfaw
il 18 Mag 2020
I have a struct with several field names.
data=
struct with fields:
'a': [100×1 double]
'b': [400×1 double]
.
.
etc.
I can save all the filed values to the same file as follow.
save(filename, 'a', 'b', ...)
but, since the field name are too many, I want to to save all of them by for loop. Is there any way I can do that? Thank you!
0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Structures in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!