필터 지우기
필터 지우기

converting 2 arrays into an array of structures

조회 수: 8 (최근 30일)
Edward
Edward 2013년 9월 26일
편집: Matt J 2013년 9월 26일
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

답변 (1개)

Matt J
Matt J 2013년 9월 26일
편집: Matt J 2013년 9월 26일
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));

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by