Returns a new matrix that is the transpose of this matrix. @return a new matrix A '
()
| 438 | * @return a new matrix <tt>A</tt>' |
| 439 | */ |
| 440 | public Matrix transpose() |
| 441 | { |
| 442 | Matrix toReturn = new DenseMatrix(cols(), rows()); |
| 443 | this.transpose(toReturn); |
| 444 | return toReturn; |
| 445 | } |
| 446 | |
| 447 | /** |
| 448 | * Overwrites the values stored in matrix <i>C</i> to store the value of |