本文整理汇总了Python中sandbox.util.Util.Util.svd方法的典型用法代码示例。如果您正苦于以下问题:Python Util.svd方法的具体用法?Python Util.svd怎么用?Python Util.svd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sandbox.util.Util.Util
的用法示例。
在下文中一共展示了Util.svd方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testSvd
# 需要导入模块: from sandbox.util.Util import Util [as 别名]
# 或者: from sandbox.util.Util.Util import svd [as 别名]
def testSvd(self):
tol = 10**-6
A = numpy.random.rand(10, 3)
P, s, Q = numpy.linalg.svd(A, full_matrices=False)
A = P[:, 0:2].dot(numpy.diag(s[0:2]).dot(Q[0:2, :]))
P2, s2, Q2 = Util.svd(A)
self.assertTrue(numpy.linalg.norm(P2.dot(numpy.diag(s2)).dot(Q2) -A) < tol )
self.assertTrue(numpy.linalg.norm(P2.conj().T.dot(P2) - numpy.eye(P2.shape[1])) < tol)
self.assertTrue(numpy.linalg.norm(Q2.dot(Q2.conj().T) - numpy.eye(Q2.shape[0])) < tol)