Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Question with accessing field in a structure

1 visualizzazione (ultimi 30 giorni)
Daniel Campbell
Daniel Campbell il 22 Ott 2015
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I'm new to MatLab so bear with me:
I have a structure named Recordings that has a field named Task, which can be either 'A', 'P', or some other value.
I want to create an index that tells me whether or not Recordings(x).Task is equal to A.
How would I go about this?
Thanks in advance.

Risposte (1)

dpb
dpb il 23 Ott 2015
isA=ismember([Recordings.Task].','A');
[] returns comma-separated list as array, .' transforms it to column vector...
Mayhaps there's a more direct way but I'm not all that adept w/ structures meself, yet...

Questa domanda è chiusa.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by