HomeSort by relevance Sort by last modified time
    Searched defs:transpose (Results 1 - 25 of 48) sorted by null

1 2

  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 22 * Test cases for {@link Tables#transpose}.
32 Table<String, Integer, Character> table = Tables.transpose(original);
40 assertSame(original, Tables.transpose(Tables.transpose(original)));
45 Table<String, Integer, Character> transpose = Tables.transpose(original); local
47 assertEquals((Character) 'a', transpose.get("foo", 1));
52 Table<String, Integer, Character> transpose = Tables.transpose(original); local
53 transpose.put("foo", 1, 'a')
59 Table<String, Integer, Character> transpose = Tables.transpose(original); local
    [all...]
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 59 JacobiRotation transpose() const { using numext::conj; return JacobiRotation(m_c, -conj(m_s)); } function in class:Eigen::JacobiRotation
296 internal::apply_rotation_in_the_plane(x, y, j.transpose());
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat2.js 88 * Transpose the values of a mat2
94 mat2.transpose = function(out, a) {
mat3.js 128 * Transpose the values of a mat3
134 mat3.transpose = function(out, a) {
mat4.js 136 * Transpose the values of a mat4
142 mat4.transpose = function(out, a) {
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
Matrix.cpp 131 Matrix4 Matrix4::transpose(const Matrix4 &mat) function in class:Matrix4
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_idct.h 55 struct pipe_sampler_view *transpose; member in struct:vl_idct
73 struct pipe_sampler_view *intermediate, *transpose; member in struct:vl_idct_buffer::__anon18417::__anon18418
96 struct pipe_sampler_view *transpose);
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.h 55 struct pipe_sampler_view *transpose; member in struct:vl_idct
73 struct pipe_sampler_view *intermediate, *transpose; member in struct:vl_idct_buffer::__anon6755::__anon6756
96 struct pipe_sampler_view *transpose);
  /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...]
TriangularMatrix.h 267 /** \sa MatrixBase::transpose() */
268 inline TriangularView<Transpose<MatrixType>,TransposeMode> transpose() function in class:Eigen::TriangularView
271 return m_matrix.const_cast_derived().transpose();
273 /** \sa MatrixBase::transpose() const */
274 inline const TriangularView<Transpose<MatrixType>,TransposeMode> transpose() const function in class:Eigen::TriangularView
276 return m_matrix.transpose();
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 176 m.transpose();
Matrix3fTest.java 225 m.transpose();
Matrix4fTest.java 176 m.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...]
covariance_impl.cc 129 const bool transpose = parameter_block1 > parameter_block2; local
130 if (transpose) {
177 if (transpose) {
179 cov.block(0, offset, block1_size, block2_size).transpose();
223 if (transpose) {
226 cov.block(0, offset, block1_local_size, block2_local_size).transpose() *
227 block1_jacobian.transpose();
232 block2_jacobian.transpose();
637 svd.matrixV().transpose();
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
object.js 492 * @param {Object} obj The object to transpose.
495 goog.object.transpose = function(obj) {
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 50 * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators.
92 typedef Transpose<Block<const VectorsType, 1, Dynamic> > EssentialVectorType;
98 return Block<const VectorsType,1,Dynamic>(h.m_vectors, k, start, 1, h.rows()-start).transpose();
202 /** \brief %Transpose of the Householder sequence. */
203 HouseholderSequence transpose() const function in class:Eigen::HouseholderSequence
217 /** \brief Adjoint (conjugate transpose) of the Householder sequence. */
377 /** \brief Sets the transpose flag.
378 * \param [in] trans New value of the transpose flag.
380 * By default, the transpose flag is not set. If the transpose flag is set, then this object represents
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 103 CwiseUnaryOp<internal::scalar_conjugate_op<Scalar>, Eigen::Transpose<const Derived> >,
104 Transpose<const Derived>
204 const bool transpose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit); local
206 if ((!transpose) && other.isRValue())
233 //const bool transpose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit);
236 "the transpose operation is supposed to be handled in SparseMatrix::operator=");
241 //typedef typename internal::conditional<transpose, LinkedVectorMatrix<Scalar,Flags&RowMajorBit>, Derived>::type TempType;
395 Transpose<Derived> transpose() { return derived(); } function in class:Eigen::SparseMatrixBase
396 const Transpose<const Derived> transpose() const { return derived(); function in class:Eigen::SparseMatrixBase
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
JetPlayerTest.java 88 int transpose = 0; local
90 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, repeatCount, transpose,
99 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, repeatCount, transpose,
113 int transpose = 0; local
115 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
119 transpose = -1;
120 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
123 transpose = 0;
124 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8WebGLRenderingContextCustom.cpp 696 bool transpose = info[1]->BooleanValue(); local
    [all...]
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 46 * Use matrixQ() to get an expression and matrixQ().transpose() to get the transpose.
151 y = matrixQ().transpose() * b;
242 SPQR_QProduct(const SPQRType& spqr, const Derived& other, bool transpose) : m_spqr(spqr),m_other(other),m_transpose(transpose) {}
277 // To use for operations with the transpose of Q
278 SPQRMatrixQTransposeReturnType<SPQRType> transpose() const function in struct:Eigen::SPQRMatrixQReturnType
  /external/guava/guava/src/com/google/common/collect/
Tables.java 136 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table) { method in class:Tables
207 original.putAll(transpose(table)); method
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
gl-matrix.js     [all...]

Completed in 939 milliseconds

1 2