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

  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 37 typedef typename Functor::JacobianType JacobianType;
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;
AutoDiffVector.h 32 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)
98 inline const JacobianType& jacobian() const { return m_jacobian; }
99 inline JacobianType& jacobian() { return m_jacobian; }
104 typename MakeCwiseBinaryOp<internal::scalar_sum_op<BaseScalar>,JacobianType,OtherJacobianType>::Type >
109 typename MakeCwiseBinaryOp<internal::scalar_sum_op<BaseScalar>,JacobianType,OtherJacobianType>::Type >(
126 typename MakeCwiseBinaryOp<internal::scalar_difference_op<Scalar>,JacobianType,OtherJacobianType>::Type
    [all...]
  /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...]
  /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/test/
forward_adolc.cpp 35 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
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());
autodiff.cpp 41 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
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());
NumericalDiff.cpp 22 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
NonLinearOptimization.cpp 116 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
127 // 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/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 71 typedef Matrix< Scalar, Dynamic, Dynamic > JacobianType;
102 JacobianType fjac;
225 ColPivHouseholderQR<JacobianType> qrfac(fjac);
464 ColPivHouseholderQR<JacobianType> qrfac(fjac);

Completed in 108 milliseconds