aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-04-11 10:46:11 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-04-11 10:46:11 +0200
commite798466871ceef80a5bd78eba460735fca829a8c (patch)
tree2edc5b16c23c1356d8714bb414227f886c017c5d /doc/examples
parentc91906b065ddfd80997204e3072bb66bc9297bcd (diff)
bug #1538: update manual pages regarding BDCSVD.
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/TutorialLinAlgSVDSolve.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/TutorialLinAlgSVDSolve.cpp b/doc/examples/TutorialLinAlgSVDSolve.cpp
index 9fbc031de..f109f04e5 100644
--- a/doc/examples/TutorialLinAlgSVDSolve.cpp
+++ b/doc/examples/TutorialLinAlgSVDSolve.cpp
@@ -11,5 +11,5 @@ int main()
VectorXf b = VectorXf::Random(3);
cout << "Here is the right hand side b:\n" << b << endl;
cout << "The least-squares solution is:\n"
- << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
+ << A.bdcSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
}