HomeSort by relevance Sort by last modified time
    Searched defs:eigenvalues (Results 1 - 14 of 14) sorted by null

  /external/eigen/Eigen/src/Eigenvalues/
MatrixBaseEigenvalues.h 27 return ComplexEigenSolver<PlainObject>(m_eval, false).eigenvalues();
39 return EigenSolver<PlainObject>(m_eval, false).eigenvalues();
45 /** \brief Computes the eigenvalues of a matrix
46 * \returns Column vector containing the eigenvalues.
49 * This function computes the eigenvalues with the help of the EigenSolver
53 * The eigenvalues are repeated according to their algebraic multiplicity,
54 * so there are as many eigenvalues as rows in the matrix.
62 * \sa EigenSolver::eigenvalues(), ComplexEigenSolver::eigenvalues(),
63 * SelfAdjointView::eigenvalues()
67 MatrixBase<Derived>::eigenvalues() const function in class:Eigen::MatrixBase
89 SelfAdjointView<MatrixType, UpLo>::eigenvalues() const function in class:Eigen::SelfAdjointView
    [all...]
ComplexEigenSolver.h 24 * \brief Computes eigenvalues and eigenvectors of general complex matrices
30 * The eigenvalues and eigenvectors of a matrix \f$ A \f$ are scalars
32 * \f$. If \f$ D \f$ is a diagonal matrix with the eigenvalues on
39 * eigenvalues and eigenvectors of a given function. The
73 /** \brief Type for vector of eigenvalues as returned by eigenvalues().
120 * eigenvalues are computed; if false, only the eigenvalues are
148 * \f$ as returned by eigenvalues(). The eigenvectors are normalized to
159 eigen_assert(m_eigenvectorsOk && "The eigenvectors have not been computed together with the eigenvalues.")
181 const EigenvalueType& eigenvalues() const function in class:Eigen::ComplexEigenSolver
    [all...]
GeneralizedEigenSolver.h 23 * \brief Computes the generalized eigenvalues and eigenvectors of a pair of general matrices
29 * The generalized eigenvalues and eigenvectors of a matrix pair \f$ A \f$ and \f$ B \f$ are scalars
31 * \f$ D \f$ is a diagonal matrix with the eigenvalues on the diagonal, and
36 * The generalized eigenvalues and eigenvectors of a matrix pair may be complex, even when the
38 * singular. To workaround this difficulty, the eigenvalues are provided as a pair of complex \f$ \alpha \f$
44 * Call the function compute() to compute the generalized eigenvalues and eigenvectors of
47 * eigenvalues and eigenvectors at construction time. Once the eigenvalue and
48 * eigenvectors are computed, they can be retrieved with the eigenvalues() and
55 * \sa MatrixBase::eigenvalues(), class ComplexEigenSolver, class SelfAdjointEigenSolver
85 /** \brief Type for vector of real scalar values eigenvalues as returned by betas()
198 EigenvalueType eigenvalues() const function in class:Eigen::GeneralizedEigenSolver
    [all...]
EigenSolver.h 23 * \brief Computes eigenvalues and eigenvectors of general matrices
29 * The eigenvalues and eigenvectors of a matrix \f$ A \f$ are scalars
31 * \f$ D \f$ is a diagonal matrix with the eigenvalues on the diagonal, and
36 * The eigenvalues and eigenvectors of a matrix may be complex, even when the
46 * Call the function compute() to compute the eigenvalues and eigenvectors of
49 * eigenvalues and eigenvectors at construction time. Once the eigenvalue and
50 * eigenvectors are computed, they can be retrieved with the eigenvalues() and
62 * \sa MatrixBase::eigenvalues(), class ComplexEigenSolver, class SelfAdjointEigenSolver
92 /** \brief Type for vector of eigenvalues as returned by eigenvalues().
243 const EigenvalueType& eigenvalues() const function in class:Eigen::EigenSolver
    [all...]
SelfAdjointEigenSolver.h 30 * \brief Computes eigenvalues and eigenvectors of selfadjoint matrices
38 * transpose. This class computes the eigenvalues and eigenvectors of a
40 * \f$ v \f$ such that \f$ Av = \lambda v \f$. The eigenvalues of a
42 * the eigenvalues on the diagonal, and \f$ V \f$ is a matrix with the
53 * Call the function compute() to compute the eigenvalues and eigenvectors of
56 * the eigenvalues and eigenvectors at construction time. Once the eigenvalue
57 * and eigenvectors are computed, they can be retrieved with the eigenvalues()
66 * \sa MatrixBase::eigenvalues(), class EigenSolver, class ComplexEigenSolver
94 /** \brief Type for vector of eigenvalues as returned by eigenvalues()
250 const RealVectorType& eigenvalues() const function in class:Eigen::SelfAdjointEigenSolver
    [all...]
  /external/opencv3/modules/core/src/
pca.cpp 110 eigen( covar, eigenvalues, eigenvectors );
145 eigenvalues = eigenvalues.rowRange(0,out_count).clone();
157 fs << "values" << eigenvalues; local
168 cv::read(fs["values"], eigenvalues);
173 int computeCumulativeEnergy(const Mat& eigenvalues, double retainedVariance)
175 CV_DbgAssert( eigenvalues.type() == DataType<T>::type );
177 Mat g(eigenvalues.size(), DataType<T>::type);
184 g.at<T>(ig,0) += eigenvalues.at<T>(im,0);
190 for(L = 0; L < eigenvalues.rows; L++
    [all...]
lda.cpp 257 // Holds the computed eigenvalues.
869 // Copy eigenvalues to OpenCV Matrix.
929 // Returns the eigenvalues of the Eigenvalue Decomposition.
930 Mat eigenvalues() { return _eigenvalues; } function in class:cv::EigenvalueDecomposition
    [all...]
  /external/eigen/unsupported/Eigen/src/Eigenvalues/
ArpackSelfAdjointEigenSolver.h 57 /** \brief Type for vector of eigenvalues as returned by eigenvalues().
79 /** \brief Constructor; computes generalized eigenvalues of given matrix with respect to another matrix.
81 * \param[in] A Self-adjoint matrix whose eigenvalues / eigenvectors will
85 * \param[in] nbrEigenvalues The number of eigenvalues / eigenvectors to compute.
89 * largest algebraic, or smallest algebraic eigenvalues. Alternatively, this
91 * eigenvalues closest to this value will be found.
93 * \param[in] tol What tolerance to find the eigenvalues to. Default is 0, which
97 * to compute the eigenvalues of the matrix \p A with respect to \p B. The eigenvectors are computed if
114 /** \brief Constructor; computes eigenvalues of given matrix
245 const Matrix<Scalar, Dynamic, 1>& eigenvalues() const function in class:Eigen::ArpackGeneralizedSelfAdjointEigenSolver
    [all...]
  /external/opencv3/modules/calib3d/src/
dls.cpp 11 # include <Eigen/Eigenvalues>
134 cv::Mat eigenvalues, eigenvectors; local
135 cv::eigen(H, eigenvalues, eigenvectors);
137 if(positive_eigenvalues(&eigenvalues))
281 Eigen::MatrixXd eigval_real = ces.eigenvalues().real();
282 Eigen::MatrixXd eigval_imag = ces.eigenvalues().imag();
292 eigenval_real = es.eigenvalues();
    [all...]
dls.h 72 bool positive_eigenvalues(const cv::Mat * eigenvalues);
95 // Holds the computed eigenvalues.
707 // Copy eigenvalues to OpenCV Matrix.
767 // Returns the eigenvalues of the Eigenvalue Decomposition.
768 Mat eigenvalues() { return _eigenvalues; } function in class:EigenvalueDecomposition
  /external/opencv3/modules/core/include/opencv2/
core.hpp 159 face recognition). Eigenvalues of this "scrambled" matrix match the eigenvalues of the true
2368 Mat eigenvalues; \/\/!< eigenvalues of the covariation matrix member in class:cv::PCA
2434 Mat eigenvalues() const { return _eigenvalues; } function in class:cv::LDA
    [all...]
  /external/opencv/cv/src/
cvshapedescr.cpp 788 double eigenvalues[6], eigenvectors[36]; local
797 CvMat _EIGVECS = cvMat(6,6,CV_64F,eigenvectors), _EIGVALS = cvMat(6,1,CV_64F,eigenvalues);
855 double a = eigenvalues[i];
873 // and find its eigenvalues and vectors too
878 if( eigenvalues[i] > 0 )
881 if( i >= 3 /*eigenvalues[0] < DBL_EPSILON*/ )
959 _EIGVALS = cvMat( 1, 2, CV_64F, eigenvalues );
963 box->size.width = (float)(2./sqrt(eigenvalues[0]));
964 box->size.height = (float)(2./sqrt(eigenvalues[1]));
    [all...]
  /external/opencv3/modules/java/src/
core.cpp 3562 Mat& eigenvalues = *((Mat*)eigenvalues_nativeObj); local
3585 Mat& eigenvalues = *((Mat*)eigenvalues_nativeObj); local
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 308 milliseconds