Searched defs:transpose (Results 1 - 25 of 53) sorted by relevance

123

/external/ceres-solver/internal/ceres/
H A Dblas.cc52 bool transpose,
60 char trans = transpose ? 'T' : 'N';
61 int n = transpose ? num_cols : num_rows;
62 int k = transpose ? num_rows : num_cols;
49 SymmetricRankKUpdate(int num_rows, int num_cols, const double* a, bool transpose, double alpha, double beta, double* c) argument
H A Dcompressed_row_sparse_matrix.cc358 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;
/external/strace/tests/
H A Dunix-pair-send-recv.c8 transpose(char *str, int len) function
39 transpose(av[1], len);
50 transpose(av[1], len);
/external/eigen/Eigen/src/Core/products/
H A DParallelizer.h86 void parallelize_gemm(const Functor& func, Index rows, Index cols, bool transpose) argument
91 // FIXME the transpose variable is only needed to properly split
95 EIGEN_UNUSED_VARIABLE(transpose);
110 Index size = transpose ? cols : rows;
125 if(transpose)
145 if(transpose)
/external/eigen/Eigen/src/Jacobi/
H A DJacobi.h59 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/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_idct.h55 struct pipe_sampler_view *transpose; member in struct:vl_idct
73 struct pipe_sampler_view *intermediate, *transpose; member in struct:vl_idct_buffer::__anon12041::__anon12042
96 struct pipe_sampler_view *transpose);
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/src/gl-matrix/
H A Dmat2.js94 mat2.transpose = function(out, a) {
H A Dmat3.js134 mat3.transpose = function(out, a) {
493 * Calculates a 3x3 normal matrix (transpose inverse) from the 4x4 matrix
H A Dmat4.js142 mat4.transpose = function(out, a) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DBigMatrix.java257 * Returns the transpose of this matrix.
259 * @return transpose matrix
261 BigMatrix transpose(); method in interface:BigMatrix
H A DFieldMatrix.java427 * Returns the transpose of this matrix.
429 * @return transpose matrix
431 FieldMatrix<T> transpose(); method in interface:FieldMatrix
H A DAbstractFieldMatrix.java626 public FieldMatrix<T> transpose() { method in class:AbstractFieldMatrix
H A DAbstractRealMatrix.java602 public RealMatrix transpose() { method in class:AbstractRealMatrix
H A DBigMatrixImpl.java909 * Returns the transpose matrix.
911 * @return transpose matrix
913 public BigMatrix transpose() { method in class:BigMatrixImpl
H A DRealMatrix.java434 * Returns the transpose of this matrix.
436 * @return transpose matrix
438 RealMatrix transpose(); method in interface:RealMatrix
/external/eigen/Eigen/src/Core/
H A DTranspositions.h140 inline Transpose<TranspositionsBase> transpose() const function in class:Eigen::TranspositionsBase
H A DPermutationMatrix.h207 inline Transpose<PermutationBase> transpose() const function in class:Eigen::PermutationBase
H A DTranspose.h19 * \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()
178 /** \returns an expression of the transpose of *this.
183 * \warning If you want to replace a matrix by its own transpose, do \b NOT do this:
185 * m = m.transpose(); // bug!!! caused by aliasing effect
193 * m = m.transpose().eval();
199 DenseBase<Derived>::transpose() function in class:Eigen::DenseBase
211 DenseBase<Derived>::transpose() const function in class:Eigen::DenseBase
[all...]
/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h50 * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators.
98 return Block<const VectorsType,1,Dynamic>(h.m_vectors, k, start, 1, h.rows()-start).transpose();
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
391 bool trans() const { return m_trans; } /**< \brief Returns the transpose flag. */
/external/eigen/Eigen/src/SPQRSupport/
H A DSuiteSparseQRSupport.h46 * 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) {} argument
277 // To use for operations with the transpose of Q
278 SPQRMatrixQTransposeReturnType<SPQRType> transpose() const function in struct:Eigen::SPQRMatrixQReturnType
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrixBase.h204 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;
396 Transpose<Derived> transpose() { return derived(); } function in class:Eigen::SparseMatrixBase
397 const Transpose<const Derived> transpose() const { return derived(); } function in class:Eigen::SparseMatrixBase
398 const AdjointReturnType adjoint() const { return transpose(); }
/external/guava/guava/src/com/google/common/collect/
H A DTables.java139 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table) { method in class:Tables
205 original.putAll(transpose(table));
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DMatrix3f.java919 * @return This matrix after transpose
1072 * <code>transpose</code> <b>locally</b> transposes this Matrix.
1074 * preserved for backwards compatibility. Use transposeNew() to transpose
1079 public Matrix3f transpose() { method in class:Matrix3f
/external/mesa3d/src/mesa/main/
H A Duniform_query.cpp387 bool transpose,
398 "transpose = %s) to: ",
400 transpose ? "true" : "false");
831 GLboolean transpose, const GLfloat *values)
865 /* GL_INVALID_VALUE is generated if `transpose' is not GL_FALSE.
868 if (transpose) {
870 "glUniformMatrix(matrix transpose is not GL_FALSE)");
877 bool(transpose), shProg, location, uni);
901 if (!transpose) {
905 /* Copy and transpose th
385 log_uniform(const void *values, enum glsl_base_type basicType, unsigned rows, unsigned cols, unsigned count, bool transpose, const struct gl_shader_program *shProg, GLint location, const struct gl_uniform_storage *uni) argument
828 _mesa_uniform_matrix(struct gl_context *ctx, struct gl_shader_program *shProg, GLuint cols, GLuint rows, GLint location, GLsizei count, GLboolean transpose, const GLfloat *values) argument
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Djet_data.h111 EAS_I8 transpose; member in struct:s_jet_segment_tag

Completed in 628 milliseconds

123