/external/eigen/Eigen/src/Eigen2Support/ |
LeastSquares.h | 97 result->coeffRef(i) = - h.coeffs()[i] / h.coeffs()[funcOfOthers]; 99 result->coeffRef(i) = - h.coeffs()[i+1] / h.coeffs()[funcOfOthers];
|
/external/eigen/Eigen/src/SparseCore/ |
AmbiVector.h | 47 Scalar& coeffRef(Index i); 182 _Scalar& AmbiVector<_Scalar,_Index>::coeffRef(_Index i)
|
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)
|
SparseSparseProductWithPruning.h | 66 tempVector.coeffRef(lhsIt.index()) += lhsIt.value() * x;
|
/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/unsupported/Eigen/src/AutoDiff/ |
AutoDiffVector.h | 58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } 59 const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
|
/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/ |
Transpositions.h | 86 inline Index& coeffRef(Index i) { return indices().coeffRef(i); } 111 coeffRef(i) = i;
|
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...] |
ArrayBase.h | 75 using Base::coeffRef;
|
/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(),
|
/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/eigen2/ |
eigen2_regression.cpp | 27 hyperplane->coeffs().coeffRef(j) = ei_random<Scalar>();
|
/external/eigen/unsupported/Eigen/ |
AdolcForward | 145 jac.coeffRef(i,j) = av[i].getADValue(j);
|
/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/Core/util/ |
Constants.h | 97 * of this expression by coeff(int), and coeffRef(int) in the case of a lvalue expression. These 116 * Means the expression has a coeffRef() method, i.e. is writable as its individual coefficients are directly addressable.
|
/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/Jacobi/ |
Jacobi.h | 304 Scalar* EIGEN_RESTRICT x = &_x.coeffRef(0); 305 Scalar* EIGEN_RESTRICT y = &_y.coeffRef(0);
|
/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/Eigenvalues/ |
Tridiagonalization.h | 364 matA.col(i).coeffRef(i+1) = 1; 374 matA.col(i).coeffRef(i+1) = beta; 375 hCoeffs.coeffRef(i) = h;
|