bug #1538: update manual pages regarding BDCSVD.

This commit is contained in:
Gael Guennebaud
2018-04-11 10:46:11 +02:00
parent c91906b065
commit e798466871
4 changed files with 39 additions and 7 deletions

View File

@@ -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;
}