basix_doc 0.1
acos_op Struct Reference

#include <operators.hpp>

List of all members.

Static Public Member Functions


Detailed Description

Definition at line 1333 of file operators.hpp.


Member Function Documentation

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

Definition at line 1346 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 1342 of file operators.hpp.

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

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

Definition at line 1334 of file operators.hpp.

References mmx::GEN_ARCCOS.

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

Definition at line 1344 of file operators.hpp.

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

Definition at line 1336 of file operators.hpp.

References mmx::acos().

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

Definition at line 1340 of file operators.hpp.

References mmx::acos_init().

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

Definition at line 1338 of file operators.hpp.

References mmx::acos().

{ x= acos (y); }

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