Is there any simple way to combine the following two structures, without using for loop or CELLFUN?
struct1 =
a: {43x1 cell}
struct2 =
b: [43x1 double]
c: {43x1 cell}
I would like to have the combined structure like this:
struct3 =
a: {43x1 cell}
b: [43x1 double]
c: {43x1 cell}