MATLAB: How to create a 1×3 cell array to hold multiple individual arrays

arrayarrayscellMATLABmatrices

I have to create a 1×3 Cell Array to hold 3 individual arrays a = [1 2 3; 4 5 6; 7 8 9], b = [7 3; 1 4], and c = [1;6;5;3]

Best Answer

my_cell_array = {a,b,c};
Or if you are simply asking how to pre-allocate the cell array in advance:
my_cell_array = cell(1,3);
Related Question