Searched refs:CoeffType (Results 1 – 2 of 2) sorted by relevance
40 typedef AutoDiffScalar<typename JacobianType::ColXpr> CoeffType; typedef52 CoeffType operator[] (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); }53 const CoeffType operator[] (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }55 CoeffType operator() (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } in operator()56 const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } in operator()58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } in coeffRef()59 const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } in coeffRef()
50 typedef Matrix<_Scalar,4,1> CoeffType;51 CoeffType m_coeffs;