Matrix constructor

Matrix(
  1. List<List<double>> _values
)

Constructs a matrix from a List<List

Matrix a = Matrix([[1.0,2.0],[3.0,4.0],[5.0,6.0]])

Implementation

Matrix(this._values);