Home
last modified time | relevance | path

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

/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffVector.h32 template<typename ValueType, typename JacobianType>
38 typedef AutoDiffScalar<Matrix<BaseScalar,JacobianType::RowsAtCompileTime,1> > ActiveScalar;
40 typedef AutoDiffScalar<typename JacobianType::ColXpr> CoeffType;
41 typedef typename JacobianType::Index Index;
67 inline AutoDiffVector(const ValueType& values, const JacobianType& jac) in AutoDiffVector()
98 inline const JacobianType& jacobian() const { return m_jacobian; } in jacobian()
99 inline JacobianType& jacobian() { return m_jacobian; } in jacobian()
104 …typename MakeCwiseBinaryOp<internal::scalar_sum_op<BaseScalar>,JacobianType,OtherJacobianType>::Ty…
109 …typename MakeCwiseBinaryOp<internal::scalar_sum_op<BaseScalar>,JacobianType,OtherJacobianType>::Ty…
126 …typename MakeCwiseBinaryOp<internal::scalar_difference_op<Scalar>,JacobianType,OtherJacobianType>:…
[all …]
DAutoDiffJacobian.h44 typedef Matrix<Scalar, ValuesAtCompileTime, InputsAtCompileTime> JacobianType; typedef
45 typedef typename JacobianType::Index Index;
62 void operator() (const InputType& x, ValueType* v, JacobianType* _jac, in operator()
65 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const in operator()
80 JacobianType& jac = *_jac; in operator()
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
DLevenbergMarquardt.h51 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef
52 typedef ColPivHouseholderQR<JacobianType> QRSolver;
75 typedef SparseMatrix<Scalar, ColMajor, Index> JacobianType; typedef
76 typedef SparseQR<JacobianType, COLAMDOrdering<int> > QRSolver;
115 typedef typename FunctorType::JacobianType JacobianType; typedef
116 typedef typename JacobianType::Scalar Scalar;
117 typedef typename JacobianType::RealScalar RealScalar;
223 JacobianType& jacobian() {return m_fjac; } in jacobian()
228 JacobianType& matrixR() {return m_rfactor; } in matrixR()
249 JacobianType m_fjac;
[all …]
/external/eigen/unsupported/test/
Dforward_adolc.cpp33 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef
63 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const in operator ()()
69 JacobianType& j = *_j; in operator ()()
103 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs()); in adolc_forward_jacobian()
Dautodiff.cpp42 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef
72 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const in operator ()()
78 JacobianType& j = *_j; in operator ()()
162 typedef typename AutoDiffJacobian<Func>::JacobianType JacobianType; in forward_jacobian_cpp11() typedef
166 JacobianType j, jref; in forward_jacobian_cpp11()
195 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs()); in forward_jacobian()
DNumericalDiff.cpp22 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef
DNonLinearOptimization.cpp117 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef
/external/eigen/unsupported/Eigen/src/NumericalDiff/
DNumericalDiff.h43 typedef typename Functor::JacobianType JacobianType; typedef
64 int df(const InputType& _x, JacobianType &jac) const in df()
/external/eigen/test/
DsparseLM.cpp25 typedef typename Base::JacobianType JacobianType; typedef
83 int df(const VectorType& uv, JacobianType& fjac) in df()
DdenseLM.cpp24 typedef typename Base::JacobianType JacobianType; typedef
78 int df(const VectorType& uv, JacobianType& fjac) in df()
/external/eigen/unsupported/Eigen/
DAdolcForward116 typedef typename Functor::JacobianType JacobianType;
121 void operator() (const InputType& x, ValueType* v, JacobianType* _jac) const
130 JacobianType& jac = *_jac;
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
DHybridNonLinearSolver.h67 typedef Matrix< Scalar, Dynamic, Dynamic > JacobianType; typedef
92 JacobianType fjac;
220 HouseholderQR<JacobianType> qrfac(fjac); // no pivoting: in solveOneStep()
463 HouseholderQR<JacobianType> qrfac(fjac); // no pivoting: in solveNumericalDiffOneStep()
DLevenbergMarquardt.h77 typedef Matrix< Scalar, Dynamic, Dynamic > JacobianType; typedef
108 JacobianType fjac;
232 ColPivHouseholderQR<JacobianType> qrfac(fjac); in minimizeOneStep()
471 ColPivHouseholderQR<JacobianType> qrfac(fjac); in minimizeOptimumStorageOneStep()