Searched defs:JacobianType (Results 1 - 8 of 8) sorted by relevance

/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffJacobian.h37 typedef typename Functor::JacobianType JacobianType; typedef in class:Eigen::AutoDiffJacobian
38 typedef typename JacobianType::Scalar Scalar;
39 typedef typename JacobianType::Index Index;
48 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const
57 JacobianType& jac = *_jac;
/external/eigen/unsupported/test/
H A DNumericalDiff.cpp22 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef in struct:Functor
H A Dforward_adolc.cpp35 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef in struct:TestFunc1
65 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
71 JacobianType& j = *_j;
105 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs());
H A Dautodiff.cpp41 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef in struct:TestFunc1
71 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
77 JacobianType& j = *_j;
111 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs());
H A DNonLinearOptimization.cpp114 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; typedef in struct:Functor
125 // void operator() (const InputType& x, ValueType* v, JacobianType* _j=0) const;
/external/eigen/unsupported/Eigen/src/NumericalDiff/
H A DNumericalDiff.h43 typedef typename Functor::JacobianType JacobianType; typedef in class:Eigen::NumericalDiff
64 int df(const InputType& _x, JacobianType &jac) const
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A DHybridNonLinearSolver.h67 typedef Matrix< Scalar, Dynamic, Dynamic > JacobianType; typedef in class:Eigen::HybridNonLinearSolver
92 JacobianType fjac;
218 HouseholderQR<JacobianType> qrfac(fjac); // no pivoting:
458 HouseholderQR<JacobianType> qrfac(fjac); // no pivoting:
H A DLevenbergMarquardt.h71 typedef Matrix< Scalar, Dynamic, Dynamic > JacobianType; typedef in class:Eigen::LevenbergMarquardt
102 JacobianType fjac;
222 ColPivHouseholderQR<JacobianType> qrfac(fjac);
458 ColPivHouseholderQR<JacobianType> qrfac(fjac);

Completed in 138 milliseconds