HomeSort by relevance Sort by last modified time
    Searched refs:coeffRef (Results 101 - 124 of 124) sorted by null

1 2 3 45

  /external/eigen/test/
householder.cpp 35 Scalar* tmp = &_tmp.coeffRef(0,0);
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 150 z.coeffRef(it.index()) -= bb*it.value();
  /external/eigen/unsupported/Eigen/src/SVD/
BDCSVD.h 260 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);
JacobiSVD.h 707 this->m_singularValues.coeffRef(i) = a;
726 std::swap(this->m_singularValues.coeffRef(i), this->m_singularValues.coeffRef(pos));
  /external/eigen/unsupported/test/
matrix_power.cpp 24 result.coeffRef(i,i) = std::abs(result.coeff(i,i));
  /external/eigen/Eigen/src/Cholesky/
LLT.h 245 mat.coeffRef(j,j) = nLjj;
284 mat.coeffRef(k,k) = x = sqrt(x);
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h 262 &actualLhs.coeffRef(0,0), actualLhs.outerStride(), &actualRhs.coeffRef(0,0), actualRhs.outerStride(),
SelfadjointMatrixVector.h 240 &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 312 Scalar* EIGEN_RESTRICT x = &_x.coeffRef(0);
313 Scalar* EIGEN_RESTRICT y = &_y.coeffRef(0);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 344 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...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 416 dst.coeffRef(i.row(),i.col()) = i.value();
SparseMatrix.h 189 inline Scalar& coeffRef(Index row, Index col)
198 eigen_assert(end>=start && "you probably called coeffRef on a non finalized matrix");
    [all...]
  /external/eigen/Eigen/src/Core/
Assign.h 403 : internal::first_aligned(&dst.coeffRef(0), size);
454 : internal::first_aligned(&dst.coeffRef(0,0), innerSize);
GeneralProduct.h 211 Base::coeffRef(0,0) = (lhs.transpose().cwiseProduct(rhs)).sum();
552 dest.coeffRef(i) += alpha * (prod.lhs().row(i).cwiseProduct(prod.rhs().transpose())).sum();
CwiseNullaryOp.h 757 for(Index i = 0; i < size; ++i) m.coeffRef(i,i) = typename Derived::Scalar(1);
DenseBase.h 81 using Base::coeffRef;
MatrixBase.h 77 using Base::coeffRef;
  /external/eigen/Eigen/src/Geometry/
Transform.h 597 matrix().coeffRef(Dim,Dim) = Scalar(1);
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h 398 m_eivalues.coeffRef(0,0) = numext::real(matrix.coeff(0,0));
  /external/eigen/unsupported/Eigen/src/Eigenvalues/
ArpackSelfAdjointEigenSolver.h 492 AminusSigmaB.coeffRef(i,i) -= sigma;
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 84 m_derivatives.coeffRef(derNumber) = Scalar(1);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 195 inline Scalar& coeffRef(Index row, Index col) {

Completed in 4534 milliseconds

1 2 3 45