Assigning a value to certain indexed elements of a struc variable
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
z8080
am 11 Mär. 2018
Kommentiert: z8080
am 12 Mär. 2018
I am trying to assign a certain value to several elements of an indexed structure:
indices = 1:3
people(indices).gender ='m'
..but get the error
"Expected one output from a curly brace or dot indexing expression, but there were 3 results."
Is this a limitation of how Matlab can work with structures, or am I making a mistake in how I am using these variables?
Is this the (still not implemented) enhancement described in this other thread reporting the same error?
Thanks for any help! I am using 2016b.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 11 Mär. 2018
[people(indices).gender] = 'm';
6 Kommentare
Walter Roberson
am 12 Mär. 2018
Note that Jos's solution only works for the initial creation of the output, not for setting a field within an existing structure
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!