OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:computeEigenvectors
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/Eigenvalues/
ComplexEigenSolver.h
119
* \param[in]
computeEigenvectors
If true, both the eigenvectors and the
125
ComplexEigenSolver(const MatrixType& matrix, bool
computeEigenvectors
= true)
133
compute(matrix,
computeEigenvectors
);
144
* \p
computeEigenvectors
was set to true (the default).
190
* \param[in]
computeEigenvectors
If true, both the eigenvectors and the
197
* \p
computeEigenvectors
is true, then the eigenvectors are also computed
211
ComplexEigenSolver& compute(const MatrixType& matrix, bool
computeEigenvectors
= true);
233
void sortEigenvalues(bool
computeEigenvectors
);
238
ComplexEigenSolver<MatrixType>& ComplexEigenSolver<MatrixType>::compute(const MatrixType& matrix, bool
computeEigenvectors
)
245
m_schur.compute(matrix,
computeEigenvectors
);
[
all
...]
SelfAdjointEigenSolver_MKL.h
51
bool
computeEigenvectors
= (options&
ComputeEigenvectors
)==
ComputeEigenvectors
; \
60
if(
computeEigenvectors
) m_eivec.setOnes(n,n); \
63
m_eigenvectorsOk =
computeEigenvectors
; \
70
jobz =
computeEigenvectors
? 'V' : 'N'; \
75
m_eigenvectorsOk =
computeEigenvectors
; \
SelfAdjointEigenSolver.h
142
* \param[in] options Can be #
ComputeEigenvectors
(default) or #EigenvaluesOnly.
146
* \p options equals #
ComputeEigenvectors
.
153
SelfAdjointEigenSolver(const MatrixType& matrix, int options =
ComputeEigenvectors
)
166
* \param[in] options Can be #
ComputeEigenvectors
(default) or #EigenvaluesOnly.
170
* function can be used to retrieve them. If \p options equals #
ComputeEigenvectors
,
192
SelfAdjointEigenSolver& compute(const MatrixType& matrix, int options =
ComputeEigenvectors
);
208
SelfAdjointEigenSolver& computeDirect(const MatrixType& matrix, int options =
ComputeEigenvectors
);
324
SelfAdjointEigenSolver(const MatrixType& matrix, bool
computeEigenvectors
)
330
compute(matrix,
computeEigenvectors
);
333
SelfAdjointEigenSolver(const MatrixType& matA, const MatrixType& matB, bool
computeEigenvectors
= true
[
all
...]
EigenSolver.h
134
* \param[in]
computeEigenvectors
If true, both the eigenvectors and the
146
EigenSolver(const MatrixType& matrix, bool
computeEigenvectors
= true)
155
compute(matrix,
computeEigenvectors
);
165
* \p
computeEigenvectors
was set to true (the default).
187
* \p
computeEigenvectors
was set to true (the default).
252
* \param[in]
computeEigenvectors
If true, both the eigenvectors and the
259
* \p
computeEigenvectors
is true, then the eigenvectors are also computed
268
* (where \f$ n \f$ is the size of the matrix) if \p
computeEigenvectors
269
* is true, and \f$ 10n^3 \f$ if \p
computeEigenvectors
is false.
276
EigenSolver& compute(const MatrixType& matrix, bool
computeEigenvectors
= true)
[
all
...]
Completed in 33 milliseconds