How to create multiple structure variables and assign values to them at one line.
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to create a structure type for example 'AC' and assign values to its fields all at one line as follows:
[AC.a, AC.b] = [5, 15]
0 commentaires
Réponses (2)
Dyuman Joshi
le 16 Mar 2023
Modifié(e) : Dyuman Joshi
le 16 Mar 2023
%Assign any type of data to a field
[AC.a, AC.b, AC.c, AC.d] = deal(5, 15, {'cell'}, '0');
AC
0 commentaires
Voss
le 16 Mar 2023
One way:
[AC.a, AC.b] = deal(5, 15);
AC
Another way:
C = {5, 15};
[AC.a, AC.b] = C{:};
AC
0 commentaires
Voir également
Catégories
En savoir plus sur Interpolation 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!