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());
61 /** Returns the adjoint transformation */
62 JacobiRotation adjoint() const { using numext::conj; return JacobiRotation(conj(m_c), -m_s); } function in class:Eigen::JacobiRotation
/external/eigen/test/
H A Dadjoint.cpp22 // check compatibility of dot and adjoint
23 VERIFY(test_isApproxWithRef(v1.dot(square * v2), (square.adjoint() * v1).dot(v2), 0));
46 // check compatibility of dot and adjoint
47 ref = NumTraits<Scalar>::IsInteger ? 0 : (std::max)((std::max)(v1.norm(),v2.norm()),(std::max)((square * v2).norm(),(square.adjoint() * v1).norm()));
48 VERIFY(internal::isMuchSmallerThan(abs(v1.dot(square * v2) - (square.adjoint() * v1).dot(v2)), ref, test_precision<Scalar>()));
56 template<typename MatrixType> void adjoint(const MatrixType& m) function
83 // check basic compatibility of adjoint, transpose, conjugate
84 VERIFY_IS_APPROX(m1.transpose().conjugate().adjoint(), m1);
85 VERIFY_IS_APPROX(m1.adjoint().conjugate().transpose(), m1);
88 VERIFY_IS_APPROX((m1.adjoint() * m
[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()
196 * \sa transposeInPlace(), adjoint() */
208 * \sa transposeInPlace(), adjoint() */
216 /** \returns an expression of the adjoint (i.e. conjugate transpose) of *this.
221 * \warning If you want to replace a matrix by its own adjoint, do \b NOT do this:
223 * m = m.adjoint(); // bug!!! caused by aliasing effect
231 * m = m.adjoint().eval();
237 MatrixBase<Derived>::adjoint() const function in class:Eigen::MatrixBase
290 * \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/SPQRSupport/
H A DSuiteSparseQRSupport.h273 SPQRMatrixQTransposeReturnType<SPQRType> adjoint() const function in struct:Eigen::SPQRMatrixQReturnType
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrixBase.h101 /** \internal the return type of MatrixBase::adjoint() */
397 const AdjointReturnType adjoint() const { return transpose(); } function in class:Eigen::SparseMatrixBase
/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/eigen/Eigen/src/SparseQR/
H A DSparseQR.h644 SparseQRMatrixQTransposeReturnType<SparseQRType> adjoint() const function in struct:Eigen::SparseQRMatrixQReturnType
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformationMatrix.cpp86 // A = ___1__ adjoint A
149 // adjoint( original_matrix, inverse_matrix )
151 // calculate the adjoint of a 4x4 matrix
162 // The matrix B = (b ) is the adjoint of A
165 static void adjoint(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result) function in namespace:blink
214 // Calculate the adjoint matrix
215 adjoint(matrix, result);
225 // Scale the adjoint matrix to get the inverse

Completed in 151 milliseconds