OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sqrtA
(Results
1 - 2
of
2
) sorted by null
/external/eigen/doc/snippets/
SelfAdjointEigenSolver_operatorSqrt.cpp
6
MatrixXd
sqrtA
= es.operatorSqrt();
7
cout << "The square root of A is: " << endl <<
sqrtA
<< endl;
8
cout << "If we square this, we get: " << endl <<
sqrtA
*
sqrtA
<< endl;
/external/eigen/unsupported/test/
matrix_square_root.cpp
17
MatrixType
sqrtA
= A.sqrt();
18
VERIFY_IS_APPROX(
sqrtA
*
sqrtA
, A);
Completed in 371 milliseconds