@brief Scale matrix A with matrix \f$ P \cdot 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(in), | allocatable | :: | p(:) | ||
| integer, | intent(in) | :: | ld |
@brief Scale matrix A with matrix \f$ P \cdot 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(in), | allocatable | :: | p(:) | ||
| integer, | intent(in) | :: | ld |