function schatten_norm¶
- deeptime.numeric.schatten_norm(mat: ndarray, order: float = 1, hermitian: bool = False) float ¶
Computes the r-Schatten norm
where are the singular values corresponding to matrix .
- Parameters:
mat (ndarray) – input matrix
order (float) – Order of the Schatten norm, must be .
hermitian (bool, optional, default=False) – If True, the matrix is assumed to be Hermitian, which allows the norm to be computed more efficiently.
- Returns:
norm – The norm.
- Return type:
float