Can I instanciate a Matrix without specifying its size?
It is possible to create a zero size matrix:
Matrix m = MatrixFactory.zeros(0, 0);
Universal Java Matrix Package
Posts tagged ‘Create Matrix’
It is possible to create a zero size matrix:
Matrix m = MatrixFactory.zeros(0, 0);
Matrix m = MatrixFactory.sparse(10, 10);
Matrix m = MatrixFactory.zeros(10, 10);