struct Matrix { var elem: [[Float]] }
let a: [[Float]] = [[1, 2], [1.0/2 1.0/3]] _ = Matrix(elem: a)
_ = Matrix(elem: [[1, 2], [1.0/2 1.0/3]])