OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:eivals
(Results
1 - 4
of
4
) sorted by null
/external/eigen/doc/snippets/
MatrixBase_eigenvalues.cpp
2
VectorXcd
eivals
= ones.eigenvalues();
variable
3
cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl <<
eivals
<< endl;
SelfAdjointView_eigenvalues.cpp
2
VectorXd
eivals
= ones.selfadjointView<Lower>().eigenvalues();
variable
3
cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl <<
eivals
<< endl;
/external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h
635
VectorType&
eivals
= solver.m_eivalues;
local
646
computeRoots(scaledMat,
eivals
);
651
if((
eivals
(2)-
eivals
(0))<=Eigen::NumTraits<Scalar>::epsilon())
662
Scalar d0 =
eivals
(2) -
eivals
(1);
663
Scalar d1 =
eivals
(1) -
eivals
(0);
673
tmp.diagonal().array () -=
eivals
(k);
689
tmp.diagonal().array () -=
eivals
(l)
742
VectorType&
eivals
= solver.m_eivalues;
local
[
all
...]
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h
122
* \param[in]
eivals
Eigenvalues
132
void matrix_function_partition_eigenvalues(const EivalsType&
eivals
, std::list<Cluster>& clusters)
136
for (Index i=0; i<
eivals
.rows(); ++i) {
148
for (Index j=i+1; j<
eivals
.rows(); ++j) {
149
if (abs(
eivals
(j) -
eivals
(i)) <= RealScalar(matrix_function_separation)
189
void matrix_function_compute_map(const EivalsType&
eivals
, const ListOfClusters& clusters, VectorType& eivalToCluster)
192
eivalToCluster.resize(
eivals
.rows());
195
for (Index i = 0; i <
eivals
.rows(); ++i) {
Completed in 519 milliseconds