示例#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)