Is there a way to convert a struct (2 fields with 52 variables each) to a matrix (2x52)? Thank you
struct:
sym (1x53)
prob (1x53)
I have tried the following which gives me a 1 x 1 cell array
symProb = reshape({x.sym}, size(53));
I have also tried struct2cell
which does the same.