HomeSort by relevance Sort by last modified time
    Searched refs:coeffRef (Results 76 - 100 of 111) sorted by null

1 2 34 5

  /external/eigen/bench/btl/libs/eigen3/
eigen3_interface.hh 57 A.coeffRef(i,j) = A_stl[j][i];
66 B.coeffRef(i) = B_stl[i];
  /external/eigen/test/
basicstuff.cpp 41 m1.coeffRef(r,c) = x;
45 v1.coeffRef(r) = x;
householder.cpp 37 Scalar* tmp = &_tmp.coeffRef(0,0);
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 15 # define EIGEN_INITIALIZE_BY_ZERO_IF_THAT_OPTION_IS_ENABLED for(int i=0;i<base().size();++i) coeffRef(i)=Scalar(0);
135 EIGEN_STRONG_INLINE Scalar& coeffRef(Index row, Index col)
143 EIGEN_STRONG_INLINE Scalar& coeffRef(Index index)
148 EIGEN_STRONG_INLINE const Scalar& coeffRef(Index row, Index col) const
156 EIGEN_STRONG_INLINE const Scalar& coeffRef(Index index) const
    [all...]
Array.h 63 using Base::coeffRef;
ArrayBase.h 75 using Base::coeffRef;
Matrix.h 144 using Base::coeffRef;
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 553 m_matrix.coeffRef(Dim,Dim) = Scalar(1);
572 m_matrix.coeffRef(Dim,Dim) = Scalar(1);
624 sv.coeffRef(0) *= x;
655 sv.coeffRef(0) *= x;
730 res.coeffRef(Dim,Dim) = Scalar(1);
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix.h 223 /*(const Scalar*)*/&m_lhs.coeffRef(row,0), m_lhs.outerStride(),
224 /*(const Scalar*)*/&m_rhs.coeffRef(0,col), m_rhs.outerStride(),
225 (Scalar*)&(m_dest.coeffRef(row,col)), m_dest.outerStride(),
SelfadjointMatrixMatrix.h 406 &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info
407 &rhs.coeffRef(0,0), rhs.outerStride(), // rhs info
408 &dst.coeffRef(0,0), dst.outerStride(), // result info
GeneralMatrixMatrixTriangular.h 206 &actualLhs.coeffRef(0,0), actualLhs.outerStride(), &actualRhs.coeffRef(0,0), actualRhs.outerStride(),
SelfadjointMatrixVector.h 233 &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info
  /external/eigen/demos/opengl/
quaternion_demo.cpp 168 m_angles.coeffRef(1) = std::asin(m.coeff(0,2));
169 m_angles.coeffRef(0) = std::atan2(-m.coeff(1,2),m.coeff(2,2));
170 m_angles.coeffRef(2) = std::atan2(-m.coeff(0,1),m.coeff(0,0));
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 271 .applyHouseholderOnTheRight(essentialVector(k), m_coeffs.coeff(k), &workspace.coeffRef(0));
274 .applyHouseholderOnTheLeft(essentialVector(k), m_coeffs.coeff(k), &workspace.coeffRef(0));
  /external/eigen/Eigen/src/SparseCore/
SparseDenseProduct.h 163 res.coeffRef(j,c) = alpha * tmp;
185 res.coeffRef(it.index(),c) += it.value() * rhs_j;
SparseVector.h 95 inline Scalar& coeffRef(Index row, Index col)
107 inline Scalar& coeffRef(Index i)
MappedSparseMatrix.h 85 inline Scalar& coeffRef(Index row, Index col)
92 eigen_assert(end>=start && "you probably called coeffRef on a non finalized matrix");
93 eigen_assert(end>start && "coeffRef cannot be called on a zero coefficient");
96 eigen_assert((*r==inner) && (id<end) && "coeffRef cannot be called on a zero coefficient");
SparseSparseProductWithPruning.h 66 tempVector.coeffRef(lhsIt.index()) += lhsIt.value() * x;
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 390 &x.col(j).coeffRef(0), &b.const_cast_derived().col(j).coeffRef(0), m_numeric, 0, 0);
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 150 z.coeffRef(it.index()) -= bb*it.value();
  /external/eigen/Eigen/src/Cholesky/
LLT.h 244 mat.coeffRef(j,j) = nLjj;
282 mat.coeffRef(k,k) = x = sqrt(x);
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 304 Scalar* EIGEN_RESTRICT x = &_x.coeffRef(0);
305 Scalar* EIGEN_RESTRICT y = &_y.coeffRef(0);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 343 std::swap(p.coeffRef(k), p.coeffRef(k+1));
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 103 inline Scalar& coeffRef(Index row, Index col)
295 * \see fillrand(), coeffRef()
306 * Compared to the generic coeffRef(), the unique limitation is that we assume
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h     [all...]

Completed in 311 milliseconds

1 2 34 5