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?