underworld.function.math module =============================== This module provides math functions. All functions take functions (or convertibles) as arguments. These functions effectively wrap to the c++ standard template library equivalent. For example, the 'exp' class generates a function with uses std::exp(double). All functions operate on and return 'double' type data (or 'float' from python). .. module:: underworld.function.math Classes ~~~~~~~ .. autosummary:: :nosignatures: underworld.function.math.abs underworld.function.math.acos underworld.function.math.acosh underworld.function.math.asin underworld.function.math.asinh underworld.function.math.atan underworld.function.math.atanh underworld.function.math.cos underworld.function.math.cosh underworld.function.math.dot underworld.function.math.erf underworld.function.math.erfc underworld.function.math.exp underworld.function.math.log underworld.function.math.log10 underworld.function.math.log2 underworld.function.math.pow underworld.function.math.sin underworld.function.math.sinh underworld.function.math.sqrt underworld.function.math.tan underworld.function.math.tanh .. autoclass:: underworld.function.math.abs :members: :show-inheritance: .. autoclass:: underworld.function.math.acos :members: :show-inheritance: .. autoclass:: underworld.function.math.acosh :members: :show-inheritance: .. autoclass:: underworld.function.math.asin :members: :show-inheritance: .. autoclass:: underworld.function.math.asinh :members: :show-inheritance: .. autoclass:: underworld.function.math.atan :members: :show-inheritance: .. autoclass:: underworld.function.math.atanh :members: :show-inheritance: .. autoclass:: underworld.function.math.cos :members: :show-inheritance: .. autoclass:: underworld.function.math.cosh :members: :show-inheritance: .. autoclass:: underworld.function.math.dot :members: :show-inheritance: .. autoclass:: underworld.function.math.erf :members: :show-inheritance: .. autoclass:: underworld.function.math.erfc :members: :show-inheritance: .. autoclass:: underworld.function.math.exp :members: :show-inheritance: .. autoclass:: underworld.function.math.log :members: :show-inheritance: .. autoclass:: underworld.function.math.log10 :members: :show-inheritance: .. autoclass:: underworld.function.math.log2 :members: :show-inheritance: .. autoclass:: underworld.function.math.pow :members: :show-inheritance: .. autoclass:: underworld.function.math.sin :members: :show-inheritance: .. autoclass:: underworld.function.math.sinh :members: :show-inheritance: .. autoclass:: underworld.function.math.sqrt :members: :show-inheritance: .. autoclass:: underworld.function.math.tan :members: :show-inheritance: .. autoclass:: underworld.function.math.tanh :members: :show-inheritance: