MATLAB: How create a cell array

cell array

How can I have a script that allows me to obtain a cell array (3600,1) of this type?
1
2
3
4
.
.
.
24
1
2
3
4
.
.
.
24

Best Answer

reshape( num2cell((1:24).'*ones(1,150)) ,[],1)