MATLAB: Repeating row in matrix for 365 times

matrix

how cna i repaest this one row 365 times mtrix are a= [ 5 45 123 15 12 28] its size is 1*6 i want to make it 365*6

Best Answer

repmat( a, [365, 1] )