python(denoising): Complexity questions done
Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
parent
81292e70f1
commit
7cf93fd66f
File diff suppressed because one or more lines are too long
|
@ -156,7 +156,7 @@ def largest_eigenvalue(a, c, e, initial_x, kmax):
|
||||||
x = initial_x
|
x = initial_x
|
||||||
for _ in range(kmax):
|
for _ in range(kmax):
|
||||||
q = multiply_vector(a, c, e, x)
|
q = multiply_vector(a, c, e, x)
|
||||||
assert not np.allclose(q, 0)
|
assert not np.allclose(q, 0) # Sanity check
|
||||||
x = q/np.linalg.norm(q)
|
x = q/np.linalg.norm(q)
|
||||||
|
|
||||||
# Computes the eigenvalue from the eigenvector
|
# Computes the eigenvalue from the eigenvector
|
||||||
|
|
Loading…
Reference in a new issue