scipy.linalg.lapack.dlauum#
- scipy.linalg.lapack.dlauum(c, lower=0, overwrite_c=0) = <flapack function dlauum>#
Multiply a triangular matrix by its own adjoint (LAPACK
dlauum).Computes
u @ u.Tfor an upper triangular c, orl.T @ lfor a lower triangular one, writing the result into the same triangle.- Parameters:
- cndarray
Square triangular matrix; only the triangle named by lower is read.
- lowerint, optional
If nonzero, c is lower triangular; otherwise upper. Default is 0.
- overwrite_cint, optional
If nonzero, c may be overwritten in place. Default is 0.
- Returns:
- andarray
The product, in the same triangle of c.
- infoint
0 on success; if negative, the
-info-th argument had an illegal value.