コード例 #1
0
ファイル: mlab.py プロジェクト: joshfermin/AI
def svd(v):
    """[u,x,v] = svd(m) return the singular value decomposition of m.
    """
    return LinearAlgebra.singular_value_decomposition(v)
コード例 #2
0
ファイル: mlab.py プロジェクト: fxia22/ASM_xf
def svd(v):
    """[u,x,v] = svd(m) return the singular value decomposition of m.
    """
    return LinearAlgebra.singular_value_decomposition(v)
コード例 #3
0
ファイル: mlab.py プロジェクト: joshfermin/AI
def eig(v):
    """[x,v] = eig(m) returns the eigenvalues of m in x and the corresponding
    eigenvectors in the rows of v.
    """
    return LinearAlgebra.eigenvectors(v)
コード例 #4
0
ファイル: mlab.py プロジェクト: fxia22/ASM_xf
def eig(v):
    """[x,v] = eig(m) returns the eigenvalues of m in x and the corresponding
    eigenvectors in the rows of v.
    """
    return LinearAlgebra.eigenvectors(v)