scipy.linalg.lapack.zgecon#

scipy.linalg.lapack.zgecon(a, anorm, norm='1') = <flapack function zgecon>#

Estimate the reciprocal condition number of a factorized matrix (LAPACK zgecon).

Parameters:
andarray

LU factorization of a square matrix, as returned by getrf.

anormfloat

Norm of the original matrix, in the norm selected by norm.

normstr, optional

'1' or 'O' for the 1-norm, 'I' for the infinity norm. Default is '1'.

Returns:
rcondfloat

Estimate of the reciprocal condition number.

infoint

0 on success; if negative, the -info-th argument had an illegal value.