Creates a new matrix of the same type @param rows the number of rows for the matrix to have @param cols the number of columns for the matrix to have @return the empty all zero new matrix
(int rows, int cols)
| 38 | * @return the empty all zero new matrix |
| 39 | */ |
| 40 | abstract protected Matrix getMatrixOfSameType(int rows, int cols); |
| 41 | |
| 42 | @Override |
| 43 | public void mutableAdd(double c, Matrix b) |