How to create a struct from a cell array of fieldnames and a cell array of values?

조회 수: 67 (최근 30일)
How can you take a cell array array of fieldnames and a cell array of values, and convert them into a structure without looping?
names = {'f1', 'f2'};
values = {1 2};
structure = struct(???)

채택된 답변

Matt J
Matt J 2013년 1월 18일
편집: Matt J 2013년 1월 18일
args=[names;values];
structure = struct(args{:})
  댓글 수: 1
Eric Sampson
Eric Sampson 2013년 1월 18일
Brilliant! I couldn't figure out how to make the fieldnames and values alternate, but your solution is the key :) Thanks Matt!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Matt J
Matt J 2013년 1월 18일
cell2struct(values,names,2)
  댓글 수: 2
Eric Sampson
Eric Sampson 2013년 1월 18일
I always find the cell2struct syntax tricky. I figured that it should be possible, but gave up. Thanks!
Jan
Jan 2013년 1월 18일
It is not documented but even slightly faster, to omit the 3rd input dimension, when values and names are {nx1} cells.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by