From f44bb4074ad857cfff4799e9777950b20171eb92 Mon Sep 17 00:00:00 2001 From: Nicolas Marsic <marsic@temf.tu-darmstadt.de> Date: Thu, 22 Sep 2016 15:39:26 +0000 Subject: [PATCH] getdp: typos --- src/beyn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/beyn.py b/src/beyn.py index 49c9973..5b6a9c0 100644 --- a/src/beyn.py +++ b/src/beyn.py @@ -18,7 +18,7 @@ def simple(operator, origin, radius, verbose -- should I be verbose? (optional) Returns the computed eigenvalues, eigenvectors - and the associate *absolute* residual norm + and the associate *absolute* residual norms """ # Display the parameter used @@ -72,7 +72,7 @@ def simple(operator, origin, radius, A1 = integrate(operator, myPath, 1, vHat) B = V0.H * A1 * W0 * S0Inv - # Eigenvalues & eigenvectors (with projection onto V0) + # Eigenvalues & eigenvectors (by projecting QHat onto V0) if(verbose): print "Solving linear EVP..." myLambda, QHat = numpy.linalg.eig(B) Q = V0 * QHat; -- GitLab