CMS 3D CMS Logo

Public Types | Static Public Member Functions

funct::NthDerivative< n, X, F > Struct Template Reference

#include <NthDerivative.h>

List of all members.

Public Types

typedef Derivative< X,
typename NthDerivative< n-1, X,
F >::type >::type 
type

Static Public Member Functions

static type get (const F &f)

Detailed Description

template<unsigned n, typename X, typename F>
struct funct::NthDerivative< n, X, F >

Definition at line 9 of file NthDerivative.h.


Member Typedef Documentation

template<unsigned n, typename X , typename F >
typedef Derivative<X, typename NthDerivative<n - 1, X, F>::type>::type funct::NthDerivative< n, X, F >::type

Definition at line 10 of file NthDerivative.h.


Member Function Documentation

template<unsigned n, typename X , typename F >
static type funct::NthDerivative< n, X, F >::get ( const F &  f) [inline, static]

Definition at line 11 of file NthDerivative.h.

References f.

Referenced by funct::nth_derivative().

                                         { 
        return derivative<X>(NthDerivative< n - 1, X, F>::get(f)); 
      }