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

  /external/eigen/Eigen/src/Core/
Transpositions.h 136 inline Transpose<TranspositionsBase> inverse() const
137 { return Transpose<TranspositionsBase>(derived()); }
140 inline Transpose<TranspositionsBase> transpose() const function in class:Eigen::TranspositionsBase
141 { return Transpose<TranspositionsBase>(derived()); }
402 class Transpose<TranspositionsBase<TranspositionsDerived> >
408 Transpose(const TranspositionType& t) : m_transpositions(t) {}
416 operator*(const MatrixBase<Derived>& matrix, const Transpose& trt)
PermutationMatrix.h 201 inline Transpose<PermutationBase> inverse() const
207 inline Transpose<PermutationBase> transpose() const function in class:Eigen::PermutationBase
243 inline PlainPermutationType operator*(const Transpose<PermutationBase<Other> >& other) const
251 inline PlainPermutationType operator*(const Transpose<PermutationBase<Other> >& other, const PermutationBase& perm)
367 PermutationMatrix(const Transpose<PermutationBase<Other> >& other)
608 struct traits<Transpose<PermutationBase<Derived> > >
615 class Transpose<PermutationBase<Derived> >
616 : public EigenBase<Transpose<PermutationBase<Derived> > >
637 Transpose(const PermutationType& p) : m_permutation(p) {
    [all...]
Transpose.h 16 /** \class Transpose
19 * \brief Expression of the transpose of a matrix
21 * \param MatrixType the type of the object of which we are taking the transpose
23 * This class represents an expression of the transpose of a matrix.
24 * It is the return type of MatrixBase::transpose() and MatrixBase::adjoint()
27 * \sa MatrixBase::transpose(), MatrixBase::adjoint()
32 struct traits<Transpose<MatrixType> > : traits<MatrixType>
57 template<typename MatrixType> class Transpose
63 EIGEN_GENERIC_PUBLIC_INTERFACE(Transpose)
65 inline Transpose(MatrixType& a_matrix) : m_matrix(a_matrix) {
199 DenseBase<Derived>::transpose() function in class:Eigen::DenseBase
211 DenseBase<Derived>::transpose() const function in class:Eigen::DenseBase
    [all...]
  /development/ndk/sources/android/ndk_helper/
vecmath.h 873 Mat4 Transpose()
  /external/ceres-solver/internal/ceres/
compressed_row_sparse_matrix.cc 357 CompressedRowSparseMatrix* CompressedRowSparseMatrix::Transpose() const {
358 CompressedRowSparseMatrix* transpose = local
361 int* transpose_rows = transpose->mutable_rows();
362 int* transpose_cols = transpose->mutable_cols();
363 double* transpose_values = transpose->mutable_values();
369 for (int i = 1; i < transpose->num_rows() + 1; ++i) {
382 for (int i = transpose->num_rows() - 1; i > 0 ; --i) {
387 *(transpose->mutable_row_blocks()) = col_blocks_;
388 *(transpose->mutable_col_blocks()) = row_blocks_;
390 return transpose;
    [all...]
  /external/chromium_org/ui/gfx/
transform.cc 260 // actually requires using the inverse-transpose of the original transform.
264 // we only need the 3rd row, 3rd column of the inverse-transpose. We can
377 void Transform::Transpose() {
378 matrix_.transpose();
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix.h 36 // transpose the product such that the result is column major
276 Transpose = StorageOrder==RowMajor,
277 ActualRows = Transpose ? MaxCols : MaxRows,
278 ActualCols = Transpose ? MaxRows : MaxCols
280 typedef typename conditional<Transpose,_RhsScalar,_LhsScalar>::type LhsScalar;
281 typedef typename conditional<Transpose,_LhsScalar,_RhsScalar>::type RhsScalar;
318 Transpose = StorageOrder==RowMajor
320 typedef typename conditional<Transpose,_RhsScalar,_LhsScalar>::type LhsScalar;
321 typedef typename conditional<Transpose,_LhsScalar,_RhsScalar>::type RhsScalar;
332 this->m_mc = Transpose ? cols : rows
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 

Completed in 415 milliseconds