basix_doc 0.1
atan_op Struct Reference

#include <operators.hpp>

List of all members.

Static Public Member Functions


Detailed Description

Definition at line 1367 of file operators.hpp.


Member Function Documentation

static C def ( const C me,
const C f 
) [inline, static]

Definition at line 1380 of file operators.hpp.

References mmx::integrate().

                                {
    return integrate (diff_op (me, f)); }
static C diff_op ( const C me,
const C x 
) [inline, static]

Definition at line 1376 of file operators.hpp.

References mmx::derive(), and mmx::square().

                                    {
    (void) me; return derive (x) / (square (x) + 1); }
static generic name ( ) [inline, static]

Definition at line 1368 of file operators.hpp.

References mmx::GEN_ARCTAN.

{ return GEN_ARCTAN; }
static nat nr_init ( ) [inline, static]

Definition at line 1378 of file operators.hpp.

{ return 1; }
static C op ( const C x) [inline, static]

Definition at line 1370 of file operators.hpp.

References mmx::atan().

{ return atan (x); }
static C op_init ( const C x,
const I &  i 
) [inline, static]

Definition at line 1374 of file operators.hpp.

References mmx::atan_init().

{ return atan_init (x, i); }
static void set_op ( R &  x,
const C y 
) [inline, static]

Definition at line 1372 of file operators.hpp.

References mmx::atan().

{ x= atan (y); }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines