MATLAB: Zero fill

xlsread

hello i need to make matrix [42X60] from matrix [42×52] how can i make it by filling with zeros? thank u very much!

Best Answer

You can try something like this:
oldMatrix = ones(42,52); % The original matrix
newMatrix = zeros(42,60); % The new matrix (with zeros)
newMatrix(1:42, 1:52) = oldMatrix; % Overlap the original matrix in the new matrix
Hope it helps ;-) !