From 7363caba172f1964d7741691470caeb3a43951fa Mon Sep 17 00:00:00 2001 From: Chris Hodapp Date: Tue, 21 Apr 2020 10:23:00 -0400 Subject: [PATCH] Fix doc typo (v is right-singular vectors, not left) --- src/linalg/svd.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/linalg/svd.rs b/src/linalg/svd.rs index 6d74a438..4be0ecdb 100644 --- a/src/linalg/svd.rs +++ b/src/linalg/svd.rs @@ -95,7 +95,7 @@ where /// # Arguments /// /// * `compute_u` − set this to `true` to enable the computation of left-singular vectors. - /// * `compute_v` − set this to `true` to enable the computation of left-singular vectors. + /// * `compute_v` − set this to `true` to enable the computation of right-singular vectors. /// * `eps` − tolerance used to determine when a value converged to 0. /// * `max_niter` − maximum total number of iterations performed by the algorithm. If this /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm @@ -626,7 +626,7 @@ where /// # Arguments /// /// * `compute_u` − set this to `true` to enable the computation of left-singular vectors. - /// * `compute_v` − set this to `true` to enable the computation of left-singular vectors. + /// * `compute_v` − set this to `true` to enable the computation of right-singular vectors. /// * `eps` − tolerance used to determine when a value converged to 0. /// * `max_niter` − maximum total number of iterations performed by the algorithm. If this /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm