MATLAB: Creating multiple values of the same x,y,z

arrayinputmultiple

Greetings,
I was wondering how I can create 100 values of the same input
x=[ 2, 4, 2]; %%% I need 100 of the same x, y, z

Best Answer

x=[ 2, 4, 2];
repmat(x,10,1)