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

12 3 4 5

  /external/eigen/Eigen/src/Core/
CwiseUnaryView.h 122 EIGEN_STRONG_INLINE Scalar& coeffRef(Index row, Index col)
124 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
127 EIGEN_STRONG_INLINE Scalar& coeffRef(Index index)
129 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
Block.h 155 inline Scalar& coeffRef(Index row, Index col)
159 .coeffRef(row + m_startRow.value(), col + m_startCol.value());
162 inline const Scalar& coeffRef(Index row, Index col) const
165 .coeffRef(row + m_startRow.value(), col + m_startCol.value());
173 inline Scalar& coeffRef(Index index)
177 .coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
181 inline const Scalar& coeffRef(Index index) const
184 .coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
271 : Base(internal::const_cast_ptr(&xpr.coeffRef(
287 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr
    [all...]
Transpose.h 120 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
123 return derived().nestedExpression().const_cast_derived().coeffRef(col, row);
126 inline ScalarWithConstIfNotLvalue& coeffRef(Index index)
129 return derived().nestedExpression().const_cast_derived().coeffRef(index);
132 inline const Scalar& coeffRef(Index row, Index col) const
134 return derived().nestedExpression().coeffRef(col, row);
137 inline const Scalar& coeffRef(Index index) const
139 return derived().nestedExpression().coeffRef(index);
MapBase.h 65 using Base::coeffRef;
101 inline const Scalar& coeffRef(Index row, Index col) const
106 inline const Scalar& coeffRef(Index index) const
185 using Base::coeffRef;
201 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
206 inline ScalarWithConstIfNotLvalue& coeffRef(Index index)
Reverse.h 113 return coeffRef(row, col);
116 inline Scalar& coeffRef(Index row, Index col)
118 return m_matrix.const_cast_derived().coeffRef(ReverseRow ? m_matrix.rows() - row - 1 : row,
133 inline Scalar& coeffRef(Index index)
135 return m_matrix.const_cast_derived().coeffRef(m_matrix.size() - index - 1);
141 return coeffRef(index);
PermutationMatrix.h 122 other.coeffRef(indices().coeff(i),i) = typename DenseDerived::Scalar(1);
151 indices().coeffRef(i) = i;
176 if(indices().coeff(k) == i) indices().coeffRef(k) = j;
177 else if(indices().coeff(k) == j) indices().coeffRef(k) = i;
193 std::swap(indices().coeffRef(i), indices().coeffRef(j));
218 for (int i=0; i<rows();++i) indices().coeffRef(other.indices().coeff(i)) = i;
224 for (int i=0; i<rows();++i) indices().coeffRef(i) = lhs.indices().coeff(rhs.indices().coeff(i));
370 for (int i=0; i<m_indices.size();++i) m_indices.coeffRef(other.nestedPermutation().indices().coeff(i)) = i;
571 mask.coeffRef(k0) = true
    [all...]
CommaInitializer.h 36 m_xpr.coeffRef(0,0) = s;
60 m_xpr.coeffRef(m_row, m_col++) = s;
Assign_MKL.h 95 const Scalar *src_ptr = src.IsRowMajor ? &(src.nestedExpression().coeffRef(outer,0)) :
96 &(src.nestedExpression().coeffRef(0, outer));
97 Scalar *dst_ptr = dst.IsRowMajor ? &(dst.coeffRef(outer,0)) : &(dst.coeffRef(0, outer));
  /external/eigen/Eigen/src/Eigenvalues/
ComplexEigenSolver.h 271 m_matX.coeffRef(k,k) = ComplexScalar(1.0,0.0);
275 m_matX.coeffRef(i,k) = -m_schur.matrixT().coeff(i,k);
277 m_matX.coeffRef(i,k) -= (m_schur.matrixT().row(i).segment(i+1,k-i-1) * m_matX.col(k).segment(i+1,k-i-1)).value();
285 m_matX.coeffRef(i,k) = m_matX.coeff(i,k) / z;
HessenbergDecomposition.h 304 matA.col(i).coeffRef(i+1) = beta;
305 hCoeffs.coeffRef(i) = h;
312 .applyHouseholderOnTheLeft(matA.col(i).tail(remainingSize-1), h, &temp.coeffRef(0));
316 .applyHouseholderOnTheRight(matA.col(i).tail(remainingSize-1).conjugate(), internal::conj(h), &temp.coeffRef(0));
ComplexSchur.h 226 m_matT.coeffRef(i+1,i) = ComplexScalar(0);
377 rot.makeGivens(m_matT.coeffRef(i,i-1), m_matT.coeffRef(i+1,i-1), &m_matT.coeffRef(i,i-1));
378 m_matT.coeffRef(i+1,i-1) = ComplexScalar(0);
  /external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h 107 .makeHouseholderInPlace(m_householder.coeffRef(k,k),
108 m_bidiagonal.template diagonal<0>().coeffRef(k));
119 .makeHouseholderInPlace(m_householder.coeffRef(k,k+1),
120 m_bidiagonal.template diagonal<1>().coeffRef(k));
  /external/eigen/unsupported/test/
sparse_extra.cpp 44 sm.coeffRef(remaining[i].x(),remaining[i].y()) = ref.coeff(remaining[i].x(),remaining[i].y());
75 // test coeff and coeffRef
80 VERIFY_RAISES_ASSERT( m.coeffRef(zeroCoords[0].x(),zeroCoords[0].y()) = 5 );
84 m.coeffRef(nonzeroCoords[0].x(), nonzeroCoords[0].y()) = Scalar(5);
85 refMat.coeffRef(nonzeroCoords[0].x(), nonzeroCoords[0].y()) = Scalar(5);
98 // w->coeffRef(remaining[i].x(),remaining[i].y()) = refMat.coeff(remaining[i].x(),remaining[i].y());
  /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];
Minor.h 74 inline Scalar& coeffRef(Index row, Index col)
76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 87 r0.makeHouseholder(e, tau.coeffRef(0), beta);
99 v.tail(m - i).applyHouseholderOnTheLeft(H.col(i).tail(m - i - 1), tau.coeffRef(i), workspace.data());
108 v.tail(m - i).applyHouseholderOnTheLeft(H.col(i).tail(m - i - 1), tau.coeffRef(i), workspace.data());
118 v.tail(m - k).makeHouseholder(e, tau.coeffRef(k), beta);
122 v.tail(m - k).applyHouseholderOnTheLeft(H.col(k).tail(m - k - 1), tau.coeffRef(k), workspace.data());
159 x_new.tail(m - k + 1).applyHouseholderOnTheLeft(H.col(k - 1).tail(m - k), tau.coeffRef(k - 1), workspace.data());
164 x_new.tail(m - i).applyHouseholderOnTheLeft(H.col(i).tail(m - i - 1), tau.coeffRef(i), workspace.data());
185 r0.makeHouseholder(e, tau.coeffRef(0), beta);
  /external/eigen/Eigen/src/Geometry/
AngleAxis.h 212 res.coeffRef(0,1) = tmp - sin_axis.z();
213 res.coeffRef(1,0) = tmp + sin_axis.z();
216 res.coeffRef(0,2) = tmp + sin_axis.y();
217 res.coeffRef(2,0) = tmp - sin_axis.y();
220 res.coeffRef(1,2) = tmp - sin_axis.x();
221 res.coeffRef(2,1) = tmp + sin_axis.x();
Quaternion.h 69 inline Scalar& x() { return this->derived().coeffs().coeffRef(0); }
71 inline Scalar& y() { return this->derived().coeffs().coeffRef(1); }
73 inline Scalar& z() { return this->derived().coeffs().coeffRef(2); }
75 inline Scalar& w() { return this->derived().coeffs().coeffRef(3); }
556 res.coeffRef(0,0) = Scalar(1)-(tyy+tzz);
557 res.coeffRef(0,1) = txy-twz;
558 res.coeffRef(0,2) = txz+twy;
559 res.coeffRef(1,0) = txy+twz;
560 res.coeffRef(1,1) = Scalar(1)-(txx+tzz);
561 res.coeffRef(1,2) = tyz-twx
    [all...]