List of all members | Static Public Member Functions
casadi::BinaryOperation< OP_HYPOT > Struct Reference

hypot(x,y) = sqrt(x^2+y^2) More...

#include <calculus.hpp>

Detailed Description

Definition at line 1007 of file calculus.hpp.

Static Public Member Functions

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

Member Function Documentation

◆ der()

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

Definition at line 1009 of file calculus.hpp.

1009  {
1010  d[0] = x/f; d[1] = y/f; }

◆ fcn()

template<typename T >
static void casadi::BinaryOperation< OP_HYPOT >::fcn ( const T &  x,
const T &  y,
T &  f 
)
inlinestatic

Definition at line 1008 of file calculus.hpp.

1008 { f = hypot(x, y);}

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