Calculates and returns the matrix-product-transpose A*B^T in the matrix C.
More...
|
subroutine | matrixproducttransposesp (A, B, C, err, error,) |
| Calculates and returns the matrix-product-transpose of the single precision matrix A*B^T in C for single precision arguments. More...
|
|
subroutine | matrixproducttransposedp (A, B, C, err, error,) |
| Calculates and returns the matrix-product-transpose of the double precision matrix A*B^T in C. More...
|
|
Calculates and returns the matrix-product-transpose A*B^T in the matrix C.
Definition at line 185 of file maths.f90.
subroutine maths::matrixproducttranspose::matrixproducttransposedp |
( |
real(dp), dimension(:,:), intent(in) |
A, |
|
|
real(dp), dimension(:,:), intent(in) |
B, |
|
|
real(dp), dimension(:,:), intent(out) |
C, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Calculates and returns the matrix-product-transpose of the double precision matrix A*B^T in C.
- Parameters
-
[in] | a | The A matrix |
[in] | b | The B matrix |
[out] | c | On exit, the product matrix C=A*B^T |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 2178 of file maths.f90.
subroutine maths::matrixproducttranspose::matrixproducttransposesp |
( |
real(sp), dimension(:,:), intent(in) |
A, |
|
|
real(sp), dimension(:,:), intent(in) |
B, |
|
|
real(sp), dimension(:,:), intent(out) |
C, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Calculates and returns the matrix-product-transpose of the single precision matrix A*B^T in C for single precision arguments.
- Parameters
-
[in] | a | The first matrix A |
[in] | b | The second matrix B |
[out] | c | On exit, the product matrix C=A*B^T |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 2128 of file maths.f90.