本文整理汇总了Python中apgl.util.Util.Util.powerEigs方法的典型用法代码示例。如果您正苦于以下问题:Python Util.powerEigs方法的具体用法?Python Util.powerEigs怎么用?Python Util.powerEigs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类apgl.util.Util.Util
的用法示例。
在下文中一共展示了Util.powerEigs方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testPowerEigs
# 需要导入模块: from apgl.util.Util import Util [as 别名]
# 或者: from apgl.util.Util.Util import powerEigs [as 别名]
def testPowerEigs(self):
n = 10
numRuns = 10
for i in range(numRuns):
A = numpy.random.rand(n, n)
l, v = Util.powerEigs(A, 0.001)
nptst.assert_array_almost_equal(v*l, A.dot(v), 2)
u, V = numpy.linalg.eig(A)
self.assertAlmostEquals(numpy.max(u), l, 2)
try:
nptst.assert_array_almost_equal(V[:, 0], v, 2)
except AssertionError:
nptst.assert_array_almost_equal(V[:, 0], -v, 2)