Skip to content
Snippets Groups Projects
Commit f44bb407 authored by Nicolas Marsic's avatar Nicolas Marsic
Browse files

getdp: typos

parent 3a69647d
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment