Filter löschen
Filter löschen

converting 2 arrays into an array of structures

8 Ansichten (letzte 30 Tage)
Edward
Edward am 26 Sep. 2013
Bearbeitet: Matt J am 26 Sep. 2013
Hi,
I have 2 arrays
numbers = [1,2,3,4];
letters = ['a','b','c','d'];
i want to convert these into an array of 4 structures so that i can access the data by:
structure(2).number
which would output 2
and
structure(3).letter
which would output c

Antworten (1)

Matt J
Matt J am 26 Sep. 2013
Bearbeitet: Matt J am 26 Sep. 2013
Seems like a bad idea. It makes indexing groups of data harder and slower. But, if you must:
structure=struct('number',num2cell(numbers), 'letter', num2cell(letters));

Kategorien

Mehr zu Data Type Conversion 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!

Translated by