HomeSort by relevance Sort by last modified time
    Searched defs:JacobianType (Results 1 - 11 of 11) sorted by null

  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 44 typedef Matrix<Scalar, ValuesAtCompileTime, InputsAtCompileTime> JacobianType;
45 typedef typename JacobianType::Index Index;
62 void operator() (const InputType& x, ValueType* v, JacobianType* _jac,
65 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const
80 JacobianType& jac = *_jac;
  /external/eigen/unsupported/test/
forward_adolc.cpp 33 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
63 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
69 JacobianType& j = *_j;
103 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs());
NumericalDiff.cpp 22 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
autodiff.cpp 42 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
72 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
78 JacobianType& j = *_j;
162 typedef typename AutoDiffJacobian<Func>::JacobianType JacobianType;
166 JacobianType j, jref;
195 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs());
NonLinearOptimization.cpp 117 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
128 // void operator() (const InputType& x, ValueType* v, JacobianType* _j=0) const;
    [all...]
  /external/eigen/test/
denseLM.cpp 24 typedef typename Base::JacobianType JacobianType;
78 int df(const VectorType& uv, JacobianType& fjac)
sparseLM.cpp 25 typedef typename Base::JacobianType JacobianType;
83 int df(const VectorType& uv, JacobianType& fjac)
  /external/eigen/unsupported/Eigen/src/NumericalDiff/
NumericalDiff.h 43 typedef typename Functor::JacobianType JacobianType;
64 int df(const InputType& _x, JacobianType &jac) const
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
HybridNonLinearSolver.h 67 typedef Matrix< Scalar, Dynamic, Dynamic > JacobianType;
92 JacobianType fjac;
220 HouseholderQR<JacobianType> qrfac(fjac); // no pivoting:
463 HouseholderQR<JacobianType> qrfac(fjac); // no pivoting:
LevenbergMarquardt.h 77 typedef Matrix< Scalar, Dynamic, Dynamic > JacobianType;
108 JacobianType fjac;
232 ColPivHouseholderQR<JacobianType> qrfac(fjac);
471 ColPivHouseholderQR<JacobianType> qrfac(fjac);
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LevenbergMarquardt.h 51 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
52 typedef ColPivHouseholderQR<JacobianType> QRSolver;
64 //int df(const InputType &x, JacobianType& fjac) { }
75 typedef SparseMatrix<Scalar, ColMajor, Index> JacobianType;
76 typedef SparseQR<JacobianType, COLAMDOrdering<int> > QRSolver;
91 //int df(const InputType &x, JacobianType& fjac) { }
115 typedef typename FunctorType::JacobianType JacobianType;
116 typedef typename JacobianType::Scalar Scalar;
117 typedef typename JacobianType::RealScalar RealScalar;
    [all...]

Completed in 343 milliseconds