예제 #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)