diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Algorithms.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Algorithms.hs b/packages/base/src/Numeric/LinearAlgebra/Algorithms.hs index fd9177c..21faf6e 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Algorithms.hs +++ b/packages/base/src/Numeric/LinearAlgebra/Algorithms.hs | |||
@@ -472,7 +472,7 @@ nullspaceSVD hint a (s,v) = vs where | |||
472 | k = case hint of | 472 | k = case hint of |
473 | Right t -> t | 473 | Right t -> t |
474 | _ -> rankSVD tol a s | 474 | _ -> rankSVD tol a s |
475 | vs = dropColumns k v | 475 | vs = conj (dropColumns k v) |
476 | 476 | ||
477 | 477 | ||
478 | -- | The nullspace of a matrix. See also 'nullspaceSVD'. | 478 | -- | The nullspace of a matrix. See also 'nullspaceSVD'. |