MATLAB: How to generate multiple random Matrices.

MATLABmatrix manipulation

I'm trying to generate multiple matrices and display them in a array to use for a function. But stuck here.
for i = 1:3
x = rand(3,3);
end
Related Question