Returns the transpose of a matrix A in A^T.
More...
Returns the transpose of a matrix A in A^T.
Definition at line 197 of file maths.f90.
subroutine maths::matrixtranspose::matrixtransposedp |
( |
real(dp), dimension(:,:), intent(in) |
A, |
|
|
real(dp), dimension(:,:), intent(out) |
AT, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Returns the transpose of a double precision matrix A in AT.
- Parameters
-
[in] | a | The matrix to take the transpose of |
[out] | at | On exit, the transpose of the matrix |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 2277 of file maths.f90.
subroutine maths::matrixtranspose::matrixtransposesp |
( |
real(sp), dimension(:,:), intent(in) |
A, |
|
|
real(sp), dimension(:,:), intent(out) |
AT, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Returns the transpose of a single precision matrix A in AT.
- Parameters
-
[in] | a | The matrix to take the transpose of |
[out] | at | On exit, the transpose of the matrix |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 2228 of file maths.f90.