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

Hyperbolic sine. More...

#include <calculus.hpp>

Detailed Description

Definition at line 904 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_SINH >::der ( const T &  x,
const T &  f,
T *  d 
)
inlinestatic

Definition at line 906 of file calculus.hpp.

906 { d[0] = cosh(x); }

◆ fcn()

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

Definition at line 905 of file calculus.hpp.

905 { f = sinh(x);}

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