I need to store multiple measurements which are contained in arrays of variable elements size (their datatype is double ) in an single array so as to use a specific matlab function . The input of this function has to be an array so I can't use the Cell data type and I know that by definition you can't have a different number of elements in different slices of the same dimensions . So my quetion is do you have a suggestion of having an array of arrays of variable size in Matlab without using Cell ?
Thank you .