Is it possible in Matlab to create array of matrices which have different size. For example
Array_Mat(:,:,1) = zeros(3);
Array_Mat(:,:,2) = zeros(4);
This gives error. How I can make array of matrices then?
Is it possible in Matlab to create array of matrices which have different size. For example
Array_Mat(:,:,1) = zeros(3);
Array_Mat(:,:,2) = zeros(4);
This gives error. How I can make array of matrices then?