HomeSort by relevance Sort by last modified time
    Searched full:eigenvectors (Results 26 - 40 of 40) sorted by null

12

  /external/jmonkeyengine/engine/src/core/com/jme3/math/
package.html 49 <li>{@link com.jme3.math.Eigen3f} - Provides computation of eigenvectors given a matrix</li>
  /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...]
  /external/srec/srec/clib/
jacobi.c 48 // Compute all eigenvalues and eigenvectors of the real symmetric matrix
165 /* save eigenvectors and eigenvalues */
  /external/eigen/bench/
eig33.cpp 193 if(evecs.col(k).dot(eig.eigenvectors().col(k))<0)
195 std::cerr << evecs - eig.eigenvectors() << "\n\n";
  /external/eigen/doc/
C06_TutorialLinearAlgebra.dox 141 \section TutorialLinAlgEigensolving Computing eigenvalues and eigenvectors
147 The computation of eigenvalues and eigenvectors does not necessarily converge, but such failure to converge is
AsciiQuickReference.txt 170 eig.eigenvectors(); // vec
  /external/ceres-solver/internal/ceres/
polynomial_solver.cc 44 // "Balancing a Matrix for Calculation of Eigenvalues and Eigenvectors".
  /external/eigen/Eigen/src/Core/util/
Constants.h 328 * that only the eigenvalues are to be computed and not the eigenvectors. */
331 * that both the eigenvalues and the eigenvectors are to be computed. */
  /external/eigen/Eigen/src/Eigen2Support/
LeastSquares.h 159 result->normal() = eig.eigenvectors().col(0);
  /external/eigen/unsupported/Eigen/src/Polynomials/
Companion.h 125 * "Balancing a matrix for calculation of eigenvalues and eigenvectors"
  /external/opencv/cxcore/src/
cxmatrix.cpp     [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 153 = (es.eigenvectors() * es.eigenvalues().cwiseSqrt().asDiagonal() * es.eigenvectors().inverse()).real();
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 47 * eigenvalues and eigenvectors of a selfadjoint matrix.
  /external/opencv/ml/src/
mlem.cpp 764 cov_rotate_mats[k] are orthogonal matrices of eigenvectors and
    [all...]
  /external/opencv/cvaux/src/
cveigenobjects.cpp 627 /* Calculation of eigenvalues & eigenvectors */
    [all...]

Completed in 348 milliseconds

12