public Tensor(int rows, int cols) { Ptr = Eigen.Create(rows, cols); Deleted = false; }
public Matrix(int rows, int cols, string id = "") { Ptr = Eigen.Create(rows, cols); ID = id; Deleted = false; }