@brief Scale matrix A
with matrix \f$ 1/P \cdot 1/P^T \f$
@details A
is a packed square matrix, P
is a column vector
@author Vladimir Mironov
@date -Sep, 2018- Initial release
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(inout) | :: | a(:) | |||
real(kind=real64), | intent(inout), | allocatable | :: | p(:) | ||
integer, | intent(in) | :: | ld |
@brief Scale matrix A
with matrix \f$ 1/P \cdot 1/P^T \f$
@details A
is a full square matrix, P
is a column vector
@author Vladimir Mironov
@date -Sep, 2018- Initial release
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(inout) | :: | a(:,:) | |||
real(kind=real64), | intent(inout), | allocatable | :: | p(:) | ||
integer, | intent(in) | :: | ld |