コード例 #1
0
def sp_inf_norm(A):
    """
    Infinity norm for sparse matrix
    """
    return zcsr_inf_norm(A.data, A.indices,
                A.indptr, A.shape[0], A.shape[1])
コード例 #2
0
ファイル: sparse.py プロジェクト: NunoEdgarGub1/qutip
def sp_inf_norm(A):
    """
    Infinity norm for sparse matrix
    """
    return zcsr_inf_norm(A.data, A.indices, 
                A.indptr, A.shape[0], A.shape[1])