/***************************************************************************** * \file * class for automatic differentiation on scalar values and 1st * derivatives and 2nd derivative. * * \author * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * * \version * ORO_Geometry V0.2 * * \par Note * VC6++ contains a bug, concerning the use of inlined friend functions * in combination with namespaces. So, try to avoid inlined friend * functions ! * * \par History * - $log$ * * \par Release * $Id: rall2d.h 19905 2009-04-23 13:29:54Z ben2610 $ * $Name: $ ****************************************************************************/ #ifndef Rall2D_H #define Rall2D_H #include #include #include "utility.h" namespace KDL { /** * Rall2d contains a value, and its gradient and its 2nd derivative, and defines an algebraic * structure on this pair. * This template class has 3 template parameters : * - T contains the type of the value. * - V contains the type of the gradient (can be a vector-like type). * - S defines a scalar type that can operate on Rall1d. This is the type that * is used to give back values of Norm() etc. * * S is usefull when you recurse a Rall1d object into itself to create a 2nd, 3th, 4th,.. * derivatives. (e.g. Rall1d< Rall1d, Rall1d, double> ). * * S is always passed by value. * * \par Class Type * Concrete implementation */ template class Rall2d { public : T t; //!< value V d; //!< 1st derivative V dd; //!< 2nd derivative public : // = Constructors INLINE Rall2d() {} explicit INLINE Rall2d(typename TI::Arg c) {t=c;SetToZero(d);SetToZero(dd);} INLINE Rall2d(typename TI::Arg tn,const V& afg):t(tn),d(afg) {SetToZero(dd);} INLINE Rall2d(typename TI::Arg tn,const V& afg,const V& afg2):t(tn),d(afg),dd(afg2) {} // = Copy Constructor INLINE Rall2d(const Rall2d& r):t(r.t),d(r.d),dd(r.dd) {} //if one defines this constructor, it's better optimized then the //automatically generated one ( that one set's up a loop to copy // word by word. // = Member functions to access internal structures : INLINE T& Value() { return t; } INLINE V& D() { return d; } INLINE V& DD() { return dd; } INLINE static Rall2d Zero() { Rall2d tmp; SetToZero(tmp); return tmp; } INLINE static Rall2d Identity() { Rall2d tmp; SetToIdentity(tmp); return tmp; } // = assignment operators INLINE Rall2d& operator =(S c) {t=c;SetToZero(d);SetToZero(dd);return *this;} INLINE Rall2d& operator =(const Rall2d& r) {t=r.t;d=r.d;dd=r.dd;return *this;} INLINE Rall2d& operator /=(const Rall2d& rhs) { t /= rhs.t; d = (d-t*rhs.d)/rhs.t; dd= (dd - S(2)*d*rhs.d-t*rhs.dd)/rhs.t; return *this; } INLINE Rall2d& operator *=(const Rall2d& rhs) { t *= rhs.t; d = (d*rhs.t+t*rhs.d); dd = (dd*rhs.t+S(2)*d*rhs.d+t*rhs.dd); return *this; } INLINE Rall2d& operator +=(const Rall2d& rhs) { t +=rhs.t; d +=rhs.d; dd+=rhs.dd; return *this; } INLINE Rall2d& operator -=(const Rall2d& rhs) { t -= rhs.t; d -= rhs.d; dd -= rhs.dd; return *this; } INLINE Rall2d& operator /=(S rhs) { t /= rhs; d /= rhs; dd /= rhs; return *this; } INLINE Rall2d& operator *=(S rhs) { t *= rhs; d *= rhs; dd *= rhs; return *this; } INLINE Rall2d& operator -=(S rhs) { t -= rhs; return *this; } INLINE Rall2d& operator +=(S rhs) { t += rhs; return *this; } // = Operators between Rall2d objects /* friend INLINE Rall2d operator /(const Rall2d& lhs,const Rall2d& rhs); friend INLINE Rall2d operator *(const Rall2d& lhs,const Rall2d& rhs); friend INLINE Rall2d operator +(const Rall2d& lhs,const Rall2d& rhs); friend INLINE Rall2d operator -(const Rall2d& lhs,const Rall2d& rhs); friend INLINE Rall2d operator -(const Rall2d& arg); friend INLINE Rall2d operator *(S s,const Rall2d& v); friend INLINE Rall2d operator *(const Rall2d& v,S s); friend INLINE Rall2d operator +(S s,const Rall2d& v); friend INLINE Rall2d operator +(const Rall2d& v,S s); friend INLINE Rall2d operator -(S s,const Rall2d& v); friend INLINE INLINE Rall2d operator -(const Rall2d& v,S s); friend INLINE Rall2d operator /(S s,const Rall2d& v); friend INLINE Rall2d operator /(const Rall2d& v,S s); // = Mathematical functions that operate on Rall2d objects friend INLINE Rall2d exp(const Rall2d& arg); friend INLINE Rall2d log(const Rall2d& arg); friend INLINE Rall2d sin(const Rall2d& arg); friend INLINE Rall2d cos(const Rall2d& arg); friend INLINE Rall2d tan(const Rall2d& arg); friend INLINE Rall2d sinh(const Rall2d& arg); friend INLINE Rall2d cosh(const Rall2d& arg); friend INLINE Rall2d tanh(const Rall2d& arg); friend INLINE Rall2d sqr(const Rall2d& arg); friend INLINE Rall2d pow(const Rall2d& arg,double m) ; friend INLINE Rall2d sqrt(const Rall2d& arg); friend INLINE Rall2d asin(const Rall2d& arg); friend INLINE Rall2d acos(const Rall2d& arg); friend INLINE Rall2d atan(const Rall2d& x); friend INLINE Rall2d atan2(const Rall2d& y,const Rall2d& x); friend INLINE Rall2d abs(const Rall2d& x); friend INLINE Rall2d hypot(const Rall2d& y,const Rall2d& x); // returns sqrt(y*y+x*x), but is optimized for accuracy and speed. friend INLINE S Norm(const Rall2d& value) ; // returns Norm( value.Value() ). // = Some utility functions to improve performance // (should also be declared on primitive types to improve uniformity friend INLINE Rall2d LinComb(S alfa,const Rall2d& a, TI::Arg beta,const Rall2d& b ); friend INLINE void LinCombR(S alfa,const Rall2d& a, TI::Arg beta,const Rall2d& b,Rall2d& result ); // = Setting value of a Rall2d object to 0 or 1 friend INLINE void SetToZero(Rall2d& value); friend INLINE void SetToOne(Rall2d& value); // = Equality in an eps-interval friend INLINE bool Equal(const Rall2d& y,const Rall2d& x,double eps); */ }; // = Operators between Rall2d objects template INLINE Rall2d operator /(const Rall2d& lhs,const Rall2d& rhs) { Rall2d tmp; tmp.t = lhs.t/rhs.t; tmp.d = (lhs.d-tmp.t*rhs.d)/rhs.t; tmp.dd= (lhs.dd-S(2)*tmp.d*rhs.d-tmp.t*rhs.dd)/rhs.t; return tmp; } template INLINE Rall2d operator *(const Rall2d& lhs,const Rall2d& rhs) { Rall2d tmp; tmp.t = lhs.t*rhs.t; tmp.d = (lhs.d*rhs.t+lhs.t*rhs.d); tmp.dd = (lhs.dd*rhs.t+S(2)*lhs.d*rhs.d+lhs.t*rhs.dd); return tmp; } template INLINE Rall2d operator +(const Rall2d& lhs,const Rall2d& rhs) { return Rall2d(lhs.t+rhs.t,lhs.d+rhs.d,lhs.dd+rhs.dd); } template INLINE Rall2d operator -(const Rall2d& lhs,const Rall2d& rhs) { return Rall2d(lhs.t-rhs.t,lhs.d-rhs.d,lhs.dd-rhs.dd); } template INLINE Rall2d operator -(const Rall2d& arg) { return Rall2d(-arg.t,-arg.d,-arg.dd); } template INLINE Rall2d operator *(S s,const Rall2d& v) { return Rall2d(s*v.t,s*v.d,s*v.dd); } template INLINE Rall2d operator *(const Rall2d& v,S s) { return Rall2d(v.t*s,v.d*s,v.dd*s); } template INLINE Rall2d operator +(S s,const Rall2d& v) { return Rall2d(s+v.t,v.d,v.dd); } template INLINE Rall2d operator +(const Rall2d& v,S s) { return Rall2d(v.t+s,v.d,v.dd); } template INLINE Rall2d operator -(S s,const Rall2d& v) { return Rall2d(s-v.t,-v.d,-v.dd); } template INLINE Rall2d operator -(const Rall2d& v,S s) { return Rall2d(v.t-s,v.d,v.dd); } template INLINE Rall2d operator /(S s,const Rall2d& rhs) { Rall2d tmp; tmp.t = s/rhs.t; tmp.d = (-tmp.t*rhs.d)/rhs.t; tmp.dd= (-S(2)*tmp.d*rhs.d-tmp.t*rhs.dd)/rhs.t; return tmp; } template INLINE Rall2d operator /(const Rall2d& v,S s) { return Rall2d(v.t/s,v.d/s,v.dd/s); } template INLINE Rall2d exp(const Rall2d& arg) { Rall2d tmp; tmp.t = exp(arg.t); tmp.d = tmp.t*arg.d; tmp.dd = tmp.d*arg.d+tmp.t*arg.dd; return tmp; } template INLINE Rall2d log(const Rall2d& arg) { Rall2d tmp; tmp.t = log(arg.t); tmp.d = arg.d/arg.t; tmp.dd = (arg.dd-tmp.d*arg.d)/arg.t; return tmp; } template INLINE Rall2d sin(const Rall2d& arg) { T v1 = sin(arg.t); T v2 = cos(arg.t); return Rall2d(v1,v2*arg.d,v2*arg.dd - (v1*arg.d)*arg.d ); } template INLINE Rall2d cos(const Rall2d& arg) { T v1 = cos(arg.t); T v2 = -sin(arg.t); return Rall2d(v1,v2*arg.d, v2*arg.dd - (v1*arg.d)*arg.d); } template INLINE Rall2d tan(const Rall2d& arg) { T v1 = tan(arg.t); T v2 = S(1)+sqr(v1); return Rall2d(v1,v2*arg.d, v2*(arg.dd+(S(2)*v1*sqr(arg.d)))); } template INLINE Rall2d sinh(const Rall2d& arg) { T v1 = sinh(arg.t); T v2 = cosh(arg.t); return Rall2d(v1,v2*arg.d,v2*arg.dd + (v1*arg.d)*arg.d ); } template INLINE Rall2d cosh(const Rall2d& arg) { T v1 = cosh(arg.t); T v2 = sinh(arg.t); return Rall2d(v1,v2*arg.d,v2*arg.dd + (v1*arg.d)*arg.d ); } template INLINE Rall2d tanh(const Rall2d& arg) { T v1 = tanh(arg.t); T v2 = S(1)-sqr(v1); return Rall2d(v1,v2*arg.d, v2*(arg.dd-(S(2)*v1*sqr(arg.d)))); } template INLINE Rall2d sqr(const Rall2d& arg) { return Rall2d(arg.t*arg.t, (S(2)*arg.t)*arg.d, S(2)*(sqr(arg.d)+arg.t*arg.dd) ); } template INLINE Rall2d pow(const Rall2d& arg,double m) { Rall2d tmp; tmp.t = pow(arg.t,m); T v2 = (m/arg.t)*tmp.t; tmp.d = v2*arg.d; tmp.dd = (S((m-1))/arg.t)*tmp.d*arg.d + v2*arg.dd; return tmp; } template INLINE Rall2d sqrt(const Rall2d& arg) { /* By inversion of sqr(x) :*/ Rall2d tmp; tmp.t = sqrt(arg.t); tmp.d = (S(0.5)/tmp.t)*arg.d; tmp.dd = (S(0.5)*arg.dd-sqr(tmp.d))/tmp.t; return tmp; } template INLINE Rall2d asin(const Rall2d& arg) { /* By inversion of sin(x) */ Rall2d tmp; tmp.t = asin(arg.t); T v = cos(tmp.t); tmp.d = arg.d/v; tmp.dd = (arg.dd+arg.t*sqr(tmp.d))/v; return tmp; } template INLINE Rall2d acos(const Rall2d& arg) { /* By inversion of cos(x) */ Rall2d tmp; tmp.t = acos(arg.t); T v = -sin(tmp.t); tmp.d = arg.d/v; tmp.dd = (arg.dd+arg.t*sqr(tmp.d))/v; return tmp; } template INLINE Rall2d atan(const Rall2d& x) { /* By inversion of tan(x) */ Rall2d tmp; tmp.t = atan(x.t); T v = S(1)+sqr(x.t); tmp.d = x.d/v; tmp.dd = x.dd/v-(S(2)*x.t)*sqr(tmp.d); return tmp; } template INLINE Rall2d atan2(const Rall2d& y,const Rall2d& x) { Rall2d tmp; tmp.t = atan2(y.t,x.t); T v = sqr(y.t)+sqr(x.t); tmp.d = (x.t*y.d-x.d*y.t)/v; tmp.dd = ( x.t*y.dd-x.dd*y.t-S(2)*(x.t*x.d+y.t*y.d)*tmp.d ) / v; return tmp; } template INLINE Rall2d abs(const Rall2d& x) { T v(Sign(x)); return Rall2d(v*x,v*x.d,v*x.dd); } template INLINE Rall2d hypot(const Rall2d& y,const Rall2d& x) { Rall2d tmp; tmp.t = hypot(y.t,x.t); tmp.d = (x.t*x.d+y.t*y.d)/tmp.t; tmp.dd = (sqr(x.d)+x.t*x.dd+sqr(y.d)+y.t*y.dd-sqr(tmp.d))/tmp.t; return tmp; } // returns sqrt(y*y+x*x), but is optimized for accuracy and speed. template INLINE S Norm(const Rall2d& value) { return Norm(value.t); } // returns Norm( value.Value() ). // (should also be declared on primitive types to improve uniformity template INLINE Rall2d LinComb(S alfa,const Rall2d& a, const T& beta,const Rall2d& b ) { return Rall2d( LinComb(alfa,a.t,beta,b.t), LinComb(alfa,a.d,beta,b.d), LinComb(alfa,a.dd,beta,b.dd) ); } template INLINE void LinCombR(S alfa,const Rall2d& a, const T& beta,const Rall2d& b,Rall2d& result ) { LinCombR(alfa, a.t, beta, b.t, result.t); LinCombR(alfa, a.d, beta, b.d, result.d); LinCombR(alfa, a.dd, beta, b.dd, result.dd); } template INLINE void SetToZero(Rall2d& value) { SetToZero(value.t); SetToZero(value.d); SetToZero(value.dd); } template INLINE void SetToIdentity(Rall2d& value) { SetToZero(value.d); SetToIdentity(value.t); SetToZero(value.dd); } template INLINE bool Equal(const Rall2d& y,const Rall2d& x,double eps=epsilon) { return (Equal(x.t,y.t,eps)&& Equal(x.d,y.d,eps)&& Equal(x.dd,y.dd,eps) ); } } #endif