Searched refs:coeffRef (Results 101 - 124 of 124) sorted by relevance

12345

/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DConstrainedConjGrad.h150 z.coeffRef(it.index()) -= bb*it.value();
/external/eigen/unsupported/Eigen/src/SVD/
H A DBDCSVD.h260 this->m_singularValues.coeffRef(i) = 0;
299 this->m_singularValues.coeffRef(i) = a;
392 m_computed(firstCol + shift + i, firstCol + shift +i) = b.singularValues().coeffRef(i);
494 m_computed(firstCol + shift + i, firstCol + shift +i) = res.singularValues().coeffRef(i);
H A DJacobiSVD.h707 this->m_singularValues.coeffRef(i) = a;
726 std::swap(this->m_singularValues.coeffRef(i), this->m_singularValues.coeffRef(pos));
/external/eigen/unsupported/test/
H A Dmatrix_power.cpp24 result.coeffRef(i,i) = std::abs(result.coeff(i,i));
/external/eigen/Eigen/src/Cholesky/
H A DLLT.h245 mat.coeffRef(j,j) = nLjj;
284 mat.coeffRef(k,k) = x = sqrt(x);
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixMatrixTriangular.h262 &actualLhs.coeffRef(0,0), actualLhs.outerStride(), &actualRhs.coeffRef(0,0), actualRhs.outerStride(),
H A DSelfadjointMatrixVector.h240 &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info
/external/eigen/Eigen/src/Jacobi/
H A DJacobi.h312 Scalar* EIGEN_RESTRICT x = &_x.coeffRef(0);
313 Scalar* EIGEN_RESTRICT y = &_y.coeffRef(0);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunction.h344 std::swap(p.coeffRef(k), p.coeffRef(k+1));
/external/eigen/Eigen/src/Core/
H A DMatrix.h144 using Base::coeffRef;
H A DAssign.h403 : internal::first_aligned(&dst.coeffRef(0), size);
454 : internal::first_aligned(&dst.coeffRef(0,0), innerSize);
H A DGeneralProduct.h211 Base::coeffRef(0,0) = (lhs.transpose().cwiseProduct(rhs)).sum();
552 dest.coeffRef(i) += alpha * (prod.lhs().row(i).cwiseProduct(prod.rhs().transpose())).sum();
H A DCwiseNullaryOp.h757 for(Index i = 0; i < size; ++i) m.coeffRef(i,i) = typename Derived::Scalar(1);
H A DDenseBase.h81 using Base::coeffRef;
H A DMatrixBase.h77 using Base::coeffRef;
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DDynamicSparseMatrix.h103 inline Scalar& coeffRef(Index row, Index col) function in class:Eigen::DynamicSparseMatrix
295 * \see fillrand(), coeffRef()
306 * Compared to the generic coeffRef(), the unique limitation is that we assume
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h889 m_singularValues.coeffRef(i) = a;
908 std::swap(m_singularValues.coeffRef(i), m_singularValues.coeffRef(pos));
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrixBase.h416 dst.coeffRef(i.row(),i.col()) = i.value();
H A DSparseMatrix.h189 inline Scalar& coeffRef(Index row, Index col) function in class:Eigen::SparseMatrix
198 eigen_assert(end>=start && "you probably called coeffRef on a non finalized matrix");
1142 eigen_assert((p<=startId || m_data.index(p-1)!=inner) && "you cannot insert an element that already exist, you must call coeffRef to this end");
/external/eigen/Eigen/src/Geometry/
H A DTransform.h597 matrix().coeffRef(Dim,Dim) = Scalar(1);
1025 sv.coeffRef(0) *= x;
1054 sv.coeffRef(0) *= x;
/external/eigen/Eigen/src/Eigenvalues/
H A DSelfAdjointEigenSolver.h398 m_eivalues.coeffRef(0,0) = numext::real(matrix.coeff(0,0));
/external/eigen/unsupported/Eigen/src/Eigenvalues/
H A DArpackSelfAdjointEigenSolver.h492 AminusSigmaB.coeffRef(i,i) -= sigma;
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h84 m_derivatives.coeffRef(derNumber) = Scalar(1);
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrix.h195 inline Scalar& coeffRef(Index row, Index col) { function in namespace:Eigen

Completed in 568 milliseconds

12345