scipy.linalg.lapack.zlange#

scipy.linalg.lapack.zlange(norm, a) = <flapack function zlange>#

Norm of a general matrix (LAPACK zlange).

Parameters:
normstr

Which norm: 'M' for the largest absolute entry, '1' or 'O' for the 1-norm, 'I' for the infinity norm, 'F' or 'E' for the Frobenius norm. Lowercase is accepted.

andarray

Matrix of shape (m, n).

Returns:
n2float

The norm. Real for every flavor.