MATLAB: How to fill a matrix with ones

MATLAB

I have two matrix A=109*26 and B=1600*26.
I want to fill A with ones to reach 1600*26.

Best Answer

A =[A; ones(1600-109,26)]; % size(A)