HomeSort by relevance Sort by last modified time
    Searched full:transpose (Results 501 - 525 of 692) sorted by null

<<2122232425262728

  /external/eigen/Eigen/
Core 300 #include "src/Core/Transpose.h"
  /external/eigen/Eigen/src/Core/
Dot.h 44 return a.transpose().template binaryExpr<scalar_conj_product_op<typename traits<T>::Scalar,typename traits<U>::Scalar> >(b).sum();
ProductBase.h 138 return lhs().row(row).cwiseProduct(rhs().col(col).transpose()).sum();
Assign.h 530 static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.transpose()); }
534 static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.transpose().eval()); }
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 85 template<typename MatrixType> class Transpose;
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Hyperplane.h 199 normal() = mat.inverse().transpose() * normal();
  /external/eigen/Eigen/src/Geometry/
Hyperplane.h 210 normal() = mat.inverse().transpose() * normal();
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 297 dec().hCoeffs().head(rank)).transpose()
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 234 return assign(other.transpose());
  /external/eigen/bench/
eig33.cpp 191 std::cerr << (evals - eig.eigenvalues()).transpose() << "\n";
  /external/eigen/blas/
level2_cplx_impl.h 226 matrix(a,*m,*n,*lda) += alpha * vector(x_cpy,*m) * vector(y_cpy,*n).transpose();
level2_impl.h 248 actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).transpose() * vector(actual_x+start,len) ).value();
306 actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).transpose() * vector(actual_x+start,len) ).value();
  /external/eigen/doc/
C08_TutorialGeometry.dox 140 MatrixNf normalMatrix = t.linear().inverse().transpose();
SparseQuickReference.dox 129 sm2 = sm1.transpose();
  /external/eigen/test/
array_for_matrix.cpp 130 VERIFY_IS_APPROX(((m1.array().abs()+1)>RealScalar(0.1)).matrix().colwise().count(), VectorOfIndices::Constant(cols,rows).transpose());
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 299 * If \a transpose is set to SvTranspose or SvAdjoint, the solution
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix3f.java 919 * @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
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/armv6/
simpleloopfilter_v6.asm 176 ;transpose r7, r8, r9, r10 to r3, r4, r5, r6
  /external/llvm/test/CodeGen/Thumb2/
2009-09-01-PostRAProlog.ll 37 define internal i32 @transpose() nounwind readonly {
  /external/mesa3d/src/glsl/builtins/ir/
transpose.ir 1 ((function transpose
  /external/sonivox/arm-wt-22k/lib_src/
jet_data.h 111 EAS_I8 transpose; member in struct:s_jet_segment_tag
  /external/ceres-solver/internal/ceres/
schur_eliminator_impl.h 663 // block += b1.transpose() * b1;
681 // block += b1.transpose() * b2;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_xv.c 25 /* original, matrix, but we transpose it to
39 /* original, but we transpose to make the conversion
  /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/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 413 // to transpose the fixup value here to map properly.
444 // to transpose the fixup value here to map properly.

Completed in 1074 milliseconds

<<2122232425262728