开发者

A cell array inside a struct in Matlab - possible?

开发者 https://www.devze.com 2023-03-03 22:26 出处:网络
I wanted to wrap up a few variables inside a single struct, for easier input and output from functions as they are sent around quite a bit.The problem is that one of the variables is a cell array - sp

I wanted to wrap up a few variables inside a single struct, for easier input and output from functions as they are sent around quite a bit. The problem is that one of the variables is a cell array - spe开发者_运维技巧cifically containing strings. Evidently once one of the variables given to

struct(var1,var2,...) 

is a cell array, then it makes the struct a cell array of structs, instead of having the cell array an inner variable of the struct - which is not my desired outcome and would require uglyfing lots of code.

Is there any solution/workaround to this issue?


You can set the field directly:

 X = struct('a', 'one', 'b', 'honk');
 X.c = {'x', 'y'};

Or, if you want to do everything inside struct() you can put the cell array into a cell array:

X = struct('a', 'one', 'b', 'honk', 'c', {{'foo', 'bar'}});
X = 
    a: 'one'
    b: 'honk'
    c: {'foo'  'bar'}
0

精彩评论

暂无评论...
验证码 换一张
取 消