Home
last modified time | relevance | path

Searched refs:m_jacobian (Results 1 – 1 of 1) sorted by relevance

/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffVector.h48 m_jacobian.setZero(); in AutoDiffVector()
52 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()
64 … m_jacobian.rowwise().sum() << "\n\n";*/ return Scalar(m_values.sum(), m_jacobian.rowwise().sum())… in sum()
68 : m_values(values), m_jacobian(jac) in AutoDiffVector()
73 : m_values(other.values()), m_jacobian(other.jacobian()) in AutoDiffVector()
[all …]