List of all members | Static Public Member Functions
casadi::UnaryOperation< OP_CEIL > Struct Reference

Ceil function. More...

#include <calculus.hpp>

Detailed Description

Definition at line 779 of file calculus.hpp.

Static Public Member Functions

template<typename T >
static void fcn (const T &x, T &f)
 
template<typename T >
static void der (const T &x, const T &f, T *d)
 

Member Function Documentation

◆ der()

template<typename T >
static void casadi::UnaryOperation< OP_CEIL >::der ( const T &  x,
const T &  f,
T *  d 
)
inlinestatic

Definition at line 782 of file calculus.hpp.

782 { d[0] = 0;}

◆ fcn()

template<typename T >
static void casadi::UnaryOperation< OP_CEIL >::fcn ( const T &  x,
T &  f 
)
inlinestatic

Definition at line 781 of file calculus.hpp.

781 { f = ceil(x);}

The documentation for this struct was generated from the following file: