I have a structure sp. How can I copy the content name into an arrray ? Its supposed to be an array of numbers.
a = sp.name;
a = sp(:).name;
does not work

 Akzeptierte Antwort

Adam
Adam am 13 Jul. 2017
Bearbeitet: Adam am 13 Jul. 2017

1 Stimme

names = { sp.Name }
will extract them into a single cell array
nums = cellfun( @str2double, names );
will turn them to a numeric array. Or just
cellfun( @str2double, { sp.Name } )
as a one-line command.

1 Kommentar

Stephen23
Stephen23 am 12 Aug. 2021
Bearbeitet: Stephen23 am 12 Aug. 2021
Simpler and more efficient:
str2double({sp.name })

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Tags

Gefragt:

am 13 Jul. 2017

Bearbeitet:

am 12 Aug. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by