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

  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 27 * applying its adjoint on the left: \f$ v = J^* v \f$ that translates to the following Eigen code:
29 * v.applyOnTheLeft(J.adjoint());
60 /** Returns the adjoint transformation */
61 JacobiRotation adjoint() const { return JacobiRotation(internal::conj(m_c), -m_s); } function in class:Eigen::JacobiRotation
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat2.js 143 mat2.adjoint = function(out, a) {
mat3.js 202 mat3.adjoint = function(out, a) {
mat4.js 244 mat4.adjoint = function(out, a) {
  /external/eigen/test/
adjoint.cpp 14 template<typename MatrixType> void adjoint(const MatrixType& m) function
40 // check basic compatibility of adjoint, transpose, conjugate
41 VERIFY_IS_APPROX(m1.transpose().conjugate().adjoint(), m1);
42 VERIFY_IS_APPROX(m1.adjoint().conjugate().transpose(), m1);
45 VERIFY_IS_APPROX((m1.adjoint() * m2).adjoint(), m2.adjoint() * m1);
46 VERIFY_IS_APPROX((s1 * m1).adjoint(), internal::conj(s1) * m1.adjoint());
68 // check compatibility of dot and adjoint
    [all...]
  /external/eigen/test/eigen2/
eigen2_adjoint.cpp 12 template<typename MatrixType> void adjoint(const MatrixType& m) function
43 // check basic compatibility of adjoint, transpose, conjugate
44 VERIFY_IS_APPROX(m1.transpose().conjugate().adjoint(), m1);
45 VERIFY_IS_APPROX(m1.adjoint().conjugate().transpose(), m1);
48 VERIFY_IS_APPROX((m1.adjoint() * m2).adjoint(), m2.adjoint() * m1);
49 VERIFY_IS_APPROX((s1 * m1).adjoint(), ei_conj(s1) * m1.adjoint());
63 // check compatibility of dot and adjoint
    [all...]
  /external/eigen/Eigen/src/Core/
Transpose.h 24 * It is the return type of MatrixBase::transpose() and MatrixBase::adjoint()
27 * \sa MatrixBase::transpose(), MatrixBase::adjoint()
195 * \sa transposeInPlace(), adjoint() */
207 * \sa transposeInPlace(), adjoint() */
215 /** \returns an expression of the adjoint (i.e. conjugate transpose) of *this.
220 * \warning If you want to replace a matrix by its own adjoint, do \b NOT do this:
222 * m = m.adjoint(); // bug!!! caused by aliasing effect
230 * m = m.adjoint().eval();
236 MatrixBase<Derived>::adjoint() const function in class:Eigen::MatrixBase
288 * \sa transpose(), adjoint(), adjointInPlace() *
    [all...]
TriangularMatrix.h 263 /** \sa MatrixBase::adjoint() const */
264 inline const TriangularView<const typename MatrixType::AdjointReturnType,TransposeMode> adjoint() const function in class:Eigen::TriangularView
265 { return m_matrix.adjoint(); }
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 46 * A.applyOnTheRight(H.adjoint()); // A = A * H^*
47 * A.applyOnTheLeft(H.adjoint()); // A = H^* * A
50 * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators.
217 /** \brief Adjoint (conjugate transpose) of the Householder sequence. */
218 ConjugateReturnType adjoint() const function in class:Eigen::HouseholderSequence
223 /** \brief Inverse of the Householder sequence (equals the adjoint). */
224 ConjugateReturnType inverse() const { return adjoint(); }
372 /* Necessary for .adjoint() and .conjugate() */
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 98 /** \internal the return type of MatrixBase::adjoint() */
393 const AdjointReturnType adjoint() const { return transpose(); } function in class:Eigen::SparseMatrixBase
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
gl-matrix.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
TransformationMatrix.cpp 88 // A = ___1__ adjoint A
151 // adjoint( original_matrix, inverse_matrix )
153 // calculate the adjoint of a 4x4 matrix
164 // The matrix B = (b ) is the adjoint of A
167 static void adjoint(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result) function in namespace:WebCore
216 // Calculate the adjoint matrix
217 adjoint(matrix, result);
227 // Scale the adjoint matrix to get the inverse
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix3f.java 1015 * Returns a new matrix representing the adjoint of this matrix.
1017 * @return The adjoint matrix
1019 public Matrix3f adjoint() { method in class:Matrix3f
1020 return adjoint(null);
1024 * Places the adjoint of this matrix in store (creates store if null.)
1030 public Matrix3f adjoint(Matrix3f store) { method in class:Matrix3f
    [all...]
Matrix4f.java 1543 public Matrix4f adjoint() { method in class:Matrix4f
1581 public Matrix4f adjoint(Matrix4f store) { method in class:Matrix4f
    [all...]

Completed in 175 milliseconds