Matrix.New(T) creates a matrix object from the table t. Matrices can only have numerical (real or complex) entries and all rows must be of equal length.
M = Matrix.New({{1,2},{2,1}}) print(M)
{ { 1 , 2 } , { 2 , 1 } }