basix_doc 0.1
asin_op Struct Reference

#include <operators.hpp>

List of all members.

Static Public Member Functions


Detailed Description

Definition at line 1350 of file operators.hpp.


Member Function Documentation

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

Definition at line 1363 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 1359 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 1351 of file operators.hpp.

References mmx::GEN_ARCSIN.

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

Definition at line 1361 of file operators.hpp.

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

Definition at line 1353 of file operators.hpp.

References mmx::asin().

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

Definition at line 1357 of file operators.hpp.

References mmx::asin_init().

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

Definition at line 1355 of file operators.hpp.

References mmx::asin().

{ x= asin (y); }

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