HomeSort by relevance Sort by last modified time
    Searched defs:coeffRef (Results 1 - 25 of 28) sorted by null

1 2

  /external/eigen/Eigen/src/Core/
Flagged.h 68 inline const Scalar& coeffRef(Index row, Index col) const
70 return m_matrix.const_cast_derived().coeffRef(row, col);
73 inline const Scalar& coeffRef(Index index) const
75 return m_matrix.const_cast_derived().coeffRef(index);
78 inline Scalar& coeffRef(Index row, Index col)
80 return m_matrix.const_cast_derived().coeffRef(row, col);
83 inline Scalar& coeffRef(Index index)
85 return m_matrix.const_cast_derived().coeffRef(index);
ForceAlignedAccess.h 54 inline Scalar& coeffRef(Index row, Index col)
56 return m_expression.const_cast_derived().coeffRef(row, col);
64 inline Scalar& coeffRef(Index index)
66 return m_expression.const_cast_derived().coeffRef(index);
NestByValue.h 55 inline Scalar& coeffRef(Index row, Index col)
57 return m_expression.const_cast_derived().coeffRef(row, col);
65 inline Scalar& coeffRef(Index index)
67 return m_expression.const_cast_derived().coeffRef(index);
ReturnByValue.h 29 // the Block-with-DirectAccess expression requires to have a coeffRef method.
73 Unusable& coeffRef(Index) { return *reinterpret_cast<Unusable*>(this); }
74 Unusable& coeffRef(Index,Index) { return *reinterpret_cast<Unusable*>(this); }
Swap.h 52 inline Scalar& coeffRef(Index rowId, Index colId)
54 return m_expression.const_cast_derived().coeffRef(rowId, colId);
57 inline Scalar& coeffRef(Index index)
59 return m_expression.const_cast_derived().coeffRef(index);
62 inline Scalar& coeffRef(Index rowId, Index colId) const
64 return m_expression.coeffRef(rowId, colId);
67 inline Scalar& coeffRef(Index index) const
69 return m_expression.coeffRef(index);
79 m_expression.coeffRef(rowId, colId) = _other.coeff(rowId, colId);
80 _other.coeffRef(rowId, colId) = tmp
    [all...]
ArrayWrapper.h 71 inline Scalar& coeffRef(Index rowId, Index colId)
73 return m_expression.const_cast_derived().coeffRef(rowId, colId);
76 inline const Scalar& coeffRef(Index rowId, Index colId) const
78 return m_expression.const_cast_derived().coeffRef(rowId, colId);
86 inline Scalar& coeffRef(Index index)
88 return m_expression.const_cast_derived().coeffRef(index);
91 inline const Scalar& coeffRef(Index index) const
93 return m_expression.const_cast_derived().coeffRef(index);
196 inline Scalar& coeffRef(Index rowId, Index colId)
198 return m_expression.const_cast_derived().coeffRef(rowId, colId)
    [all...]
CwiseUnaryView.h 103 inline Scalar* data() { return &coeffRef(0); }
126 EIGEN_STRONG_INLINE Scalar& coeffRef(Index row, Index col)
128 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
131 EIGEN_STRONG_INLINE Scalar& coeffRef(Index index)
133 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
Diagonal.h 98 inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
99 inline const Scalar* data() const { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
101 inline Scalar& coeffRef(Index row, Index)
104 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
107 inline const Scalar& coeffRef(Index row, Index) const
109 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
117 inline Scalar& coeffRef(Index idx)
120 return m_matrix.const_cast_derived().coeffRef(idx+rowOffset(), idx+colOffset());
123 inline const Scalar& coeffRef(Index idx) const
125 return m_matrix.const_cast_derived().coeffRef(idx+rowOffset(), idx+colOffset())
    [all...]
MapBase.h 65 using Base::coeffRef;
101 inline const Scalar& coeffRef(Index rowId, Index colId) const
106 inline const Scalar& coeffRef(Index index) const
186 using Base::coeffRef;
202 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
207 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);
SelfAdjointView.h 89 /** \sa MatrixBase::coeffRef()
92 inline Scalar& coeffRef(Index row, Index col)
95 return m_matrix.const_cast_derived().coeffRef(row, col);
217 dst.coeffRef(row, col) = numext::real(src.coeff(row, col));
219 dst.coeffRef(col, row) = numext::conj(dst.coeffRef(row, col) = src.coeff(row, col));
242 dst.coeffRef(row, col) = numext::real(src.coeff(row, col));
244 dst.coeffRef(col, row) = numext::conj(dst.coeffRef(row, col) = src.coeff(row, col));
265 dst.coeffRef(j,i) = numext::conj(dst.coeff(i,j))
    [all...]
SelfCwiseBinaryOp.h 65 inline Scalar& coeffRef(Index row, Index col)
68 return m_matrix.const_cast_derived().coeffRef(row, col);
70 inline const Scalar& coeffRef(Index row, Index col) const
72 return m_matrix.coeffRef(row, col);
77 inline Scalar& coeffRef(Index index)
80 return m_matrix.const_cast_derived().coeffRef(index);
82 inline const Scalar& coeffRef(Index index) const
84 return m_matrix.const_cast_derived().coeffRef(index);
93 Scalar& tmp = m_matrix.coeffRef(row,col);
102 Scalar& tmp = m_matrix.coeffRef(index)
    [all...]
Transpositions.h 86 inline Index& coeffRef(Index i) { return indices().coeffRef(i); }
111 coeffRef(i) = i;
Block.h 211 inline Scalar& coeffRef(Index rowId, Index colId)
215 .coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
218 inline const Scalar& coeffRef(Index rowId, Index colId) const
221 .coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
229 inline Scalar& coeffRef(Index index)
233 .coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
237 inline const Scalar& coeffRef(Index index) const
240 .coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
327 : Base(internal::const_cast_ptr(&xpr.coeffRef(
340 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr
    [all...]
DenseCoeffsBase.h 44 // - The LvalueBit means exactly that we can offer a coeffRef() method, which means exactly that we can get references
92 * \sa operator()(Index,Index) const, coeffRef(Index,Index), coeff(Index) const
130 * \sa operator[](Index) const, coeffRef(Index), coeff(Index,Index) const
247 void coeffRef();
312 * \sa operator()(Index,Index), coeff(Index, Index) const, coeffRef(Index)
314 EIGEN_STRONG_INLINE Scalar& coeffRef(Index row, Index col)
318 return derived().coeffRef(row, col);
324 return coeffRef(rowIndexByOuterInner(outer, inner),
338 return derived().coeffRef(row, col);
354 * \sa operator[](Index), coeff(Index) const, coeffRef(Index,Index
    [all...]
ProductBase.h 162 const Scalar& coeffRef(Index row, Index col) const
166 return derived().coeffRef(row,col);
169 const Scalar& coeffRef(Index i) const
173 return derived().coeffRef(i);
Transpose.h 121 inline ScalarWithConstIfNotLvalue& coeffRef(Index rowId, Index colId)
124 return derived().nestedExpression().const_cast_derived().coeffRef(colId, rowId);
127 inline ScalarWithConstIfNotLvalue& coeffRef(Index index)
130 return derived().nestedExpression().const_cast_derived().coeffRef(index);
133 inline const Scalar& coeffRef(Index rowId, Index colId) const
135 return derived().nestedExpression().coeffRef(colId, rowId);
138 inline const Scalar& coeffRef(Index index) const
140 return derived().nestedExpression().coeffRef(index);
PlainObjectBase.h 16 # define EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED for(int i=0;i<base().size();++i) coeffRef(i)=Scalar(0);
19 # define EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED for(int i=0;i<base().size();++i) coeffRef(i)=std::numeric_limits<Scalar>::quiet_NaN();
151 EIGEN_STRONG_INLINE Scalar& coeffRef(Index rowId, Index colId)
159 EIGEN_STRONG_INLINE Scalar& coeffRef(Index index)
164 EIGEN_STRONG_INLINE const Scalar& coeffRef(Index rowId, Index colId) const
172 EIGEN_STRONG_INLINE const Scalar& coeffRef(Index index) const
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
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/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/SparseCore/
AmbiVector.h 47 Scalar& coeffRef(Index i);
182 _Scalar& AmbiVector<_Scalar,_Index>::coeffRef(_Index i)
MappedSparseMatrix.h 87 inline Scalar& coeffRef(Index row, Index col)
94 eigen_assert(end>=start && "you probably called coeffRef on a non finalized matrix");
95 eigen_assert(end>start && "coeffRef cannot be called on a zero coefficient");
98 eigen_assert((*r==inner) && (id<end) && "coeffRef cannot be called on a zero coefficient");
SparseBlock.h 240 inline Scalar& coeffRef(int row, int col)
242 return m_matrix.const_cast_derived().coeffRef(row + (IsRowMajor ? m_outerStart : 0), col + (IsRowMajor ? 0 : m_outerStart));
447 inline Scalar& coeffRef(int row, int col)
450 .coeffRef(row + m_startRow.value(), col + m_startCol.value());
458 inline Scalar& coeffRef(int index)
461 .coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 195 inline Scalar& coeffRef(Index row, Index col) {
  /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

Completed in 972 milliseconds

1 2