Searched defs:adjoint (Results 1 - 14 of 14) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat2.js143 mat2.adjoint = function(out, a) {
H A Dmat3.js202 mat3.adjoint = function(out, a) {
H A Dmat4.js244 mat4.adjoint = function(out, a) {
/external/eigen/Eigen/src/Jacobi/
H A DJacobi.h27 * 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/eigen/test/
H A Dadjoint.cpp14 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/
H A Deigen2_adjoint.cpp12 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/Householder/
H A DHouseholderSequence.h46 * 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.
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/Core/
H A DTranspose.h24 * 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(), adjointInPlac
[all...]
H A DTriangularMatrix.h263 /** \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/SparseCore/
H A DSparseMatrixBase.h98 /** \internal the return type of MatrixBase::adjoint() */
393 const AdjointReturnType adjoint() const { return transpose(); } function in class:Eigen::SparseMatrixBase
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DMatrix3f.java1015 * 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
H A DMatrix4f.java1539 * Returns a new matrix representing the adjoint of this matrix.
1541 * @return The adjoint matrix
1543 public Matrix4f adjoint() { method in class:Matrix4f
1544 return adjoint(null);
1575 * Places the adjoint of this matrix in store (creates store if null.)
1581 public Matrix4f adjoint(Matrix4f store) { method in class:Matrix4f
/external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
H A Dgl-matrix.js1701 mat2.adjoint = function(out, a) {
2254 mat3.adjoint = function(out, a) {
2727 mat4.adjoint = function(out, a) {
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DTransformationMatrix.cpp88 // 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
1515 // inverse. Instead, knowing the inverse of a matrix is adjoint(matrix) / determinant,
1516 // we can simply compute the m33() of the adjoint (adjugat
[all...]

Completed in 577 milliseconds