Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A cell array inside a struct in Matlab - possible?

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 - specifically 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?

like image 253
dan12345 Avatar asked May 08 '11 11:05

dan12345


1 Answers

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'}
like image 189
Alex Avatar answered Oct 12 '22 13:10

Alex