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

  /external/eigen/Eigen/src/Eigenvalues/
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
33 * the diagonal, and \f$ V \f$ is a matrix with the eigenvectors as
39 * eigenvalues and eigenvectors of a given function. The
80 /** \brief Type for matrix of eigenvectors as returned by eigenvectors().
119 * \param[in] computeEigenvectors If true, both the eigenvectors and the
137 /** \brief Returns the eigenvectors of given matrix.
139 * \returns A const reference to the matrix whose columns are the eigenvectors.
147 * This function returns a matrix whose columns are the eigenvectors. Colum
157 const EigenvectorType& eigenvectors() const function in class:Eigen::ComplexEigenSolver
    [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
32 * \f$ V \f$ is a matrix with the eigenvectors as its columns, then \f$ A V =
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
51 * eigenvectors() functions. The pseudoEigenvalueMatrix() and
99 /** \brief Type for matrix of eigenvectors as returned by eigenvectors().
345 typename EigenSolver<MatrixType>::EigenvectorsType EigenSolver<MatrixType>::eigenvectors() const function in class:Eigen::EigenSolver
    [all...]
GeneralizedEigenSolver.h 24 * \brief Computes the generalized eigenvalues and eigenvectors of a pair of general matrices
30 * The generalized eigenvalues and eigenvectors of a matrix pair \f$ A \f$ and \f$ B \f$ are scalars
33 * \f$ V \f$ is a matrix with the eigenvectors as its columns, then \f$ A V =
37 * The generalized eigenvalues and eigenvectors of a matrix pair may be complex, even when the
45 * Call the function compute() to compute the generalized eigenvalues and eigenvectors of
48 * eigenvalues and eigenvectors at construction time. Once the eigenvalue and
49 * eigenvectors are computed, they can be retrieved with the eigenvalues() and
50 * eigenvectors() functions.
104 /** \brief Type for matrix of eigenvectors as returned by eigenvectors().
179 EigenvectorsType eigenvectors() const { function in class:Eigen::GeneralizedEigenSolver
    [all...]
SelfAdjointEigenSolver.h 32 * \brief Computes eigenvalues and eigenvectors of selfadjoint matrices
40 * transpose. This class computes the eigenvalues and eigenvectors of a
45 * eigenvectors as its columns, then \f$ A = V D V^{-1} \f$ (for selfadjoint
55 * Call the function compute() to compute the eigenvalues and eigenvectors of
58 * the eigenvalues and eigenvectors at construction time. Once the eigenvalue
59 * and eigenvectors are computed, they can be retrieved with the eigenvalues()
60 * and eigenvectors() functions.
128 * eigenvalues and eigenvectors will be computed.
152 * eigenvalues of the matrix \p matrix. The eigenvectors are computed if
180 * then the eigenvectors are also computed and can be retrieved b
259 const EigenvectorsType& eigenvectors() const function in class:Eigen::SelfAdjointEigenSolver
    [all...]
  /external/eigen/unsupported/Eigen/src/Eigenvalues/
ArpackSelfAdjointEigenSolver.h 81 * \param[in] A Self-adjoint matrix whose eigenvalues / eigenvectors will
85 * \param[in] nbrEigenvalues The number of eigenvalues / eigenvectors to compute.
97 * to compute the eigenvalues of the matrix \p A with respect to \p B. The eigenvectors are computed if
116 * \param[in] A Self-adjoint matrix whose eigenvalues / eigenvectors will
119 * \param[in] nbrEigenvalues The number of eigenvalues / eigenvectors to compute.
131 * to compute the eigenvalues of the matrix \p A. The eigenvectors are computed if
150 /** \brief Computes generalized eigenvalues / eigenvectors of given matrix using the external ARPACK library.
154 * \param[in] nbrEigenvalues The number of eigenvalues / eigenvectors to compute.
169 * then the eigenvectors are also computed and can be retrieved by
170 * calling eigenvectors()
223 const Matrix<Scalar, Dynamic, Dynamic>& eigenvectors() const function in class:Eigen::ArpackGeneralizedSelfAdjointEigenSolver
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
EigenDecompositionImpl.java 77 /** Eigenvectors. */
78 private ArrayRealVector[] eigenvectors; field in class:EigenDecompositionImpl
162 final int m = eigenvectors.length;
165 cachedV.setColumnVector(k, eigenvectors[k]);
186 final int m = eigenvectors.length;
189 cachedVt.setRowVector(k, eigenvectors[k]);
223 return eigenvectors[i].copy();
240 return new Solver(realEigenvalues, imagEigenvalues, eigenvectors);
252 /** Eigenvectors. */
253 private final ArrayRealVector[] eigenvectors; field in class:EigenDecompositionImpl.Solver
    [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);
858 eigenvectors[i*6 + j] *= a;
890 _EIGVECS = cvMat( 6, 1, CV_64F, eigenvectors + 6*i );
958 _EIGVECS = cvMat( 2, 2, CV_64F, eigenvectors );
962 // exteract axis length from eigenvectors
967 box->angle = (float)(180 - atan2(eigenvectors[2], eigenvectors[3])*180/CV_PI);
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 680 milliseconds