Cordial greeting.
I have a list of the following form.
L=[1,2,3,4,5,6,7,8,9,10,11,12]
and I want to generate a 4x3 matrix with that list and with that data, in such a so I have something like this:
M=[[1,2,3],[4,5,6],[7,8,9],[10,11,12]]
Thank you for your attention.