1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
.. Copyright (c) 2016-2024 Keith O'Hara
Distributed under the terms of the Apache License, Version 2.0.
The full license is in the file LICENSE, distributed with this software.
Basic functions
===============
.. _abs-function-reference:
.. doxygenfunction:: abs(const T)
:project: gcem
.. _fabs-function-reference:
.. doxygenfunction:: fabs(const T)
:project: gcem
.. _fabsf-func-ref:
.. doxygenfunction:: fabsf(const T)
:project: gcem
.. _fabsl-func-ref:
.. doxygenfunction:: fabsl(const T)
:project: gcem
.. _ceil-function-reference:
.. doxygenfunction:: ceil(const T)
:project: gcem
.. _copysign-func-ref:
.. doxygenfunction:: copysign(const T1, const T2)
:project: gcem
.. _exp-function-reference:
.. doxygenfunction:: exp(const T)
:project: gcem
.. _expm1-func-ref:
.. doxygenfunction:: expm1(const T)
:project: gcem
.. _factorial-func-ref:
.. doxygenfunction:: factorial(const T)
:project: gcem
.. _floor-func-ref:
.. doxygenfunction:: floor(const T)
:project: gcem
.. _fmod-func-ref:
.. doxygenfunction:: fmod(const T1, const T2)
:project: gcem
.. _hypot-func-ref:
.. doxygenfunction:: hypot(const T1, const T2)
:project: gcem
.. _log-function-reference:
.. doxygenfunction:: log(const T)
:project: gcem
.. _log1p-func-ref:
.. doxygenfunction:: log1p(const T)
:project: gcem
.. _log2-func-ref:
.. doxygenfunction:: log2(const T)
:project: gcem
.. _log10-func-ref:
.. doxygenfunction:: log10(const T)
:project: gcem
.. _max-function-reference:
.. doxygenfunction:: max(const T1, const T2)
:project: gcem
.. _min-function-reference:
.. doxygenfunction:: min(const T1, const T2)
:project: gcem
.. _pow-function-reference:
.. doxygenfunction:: pow(const T1, const T2)
:project: gcem
.. _round-func-ref:
.. doxygenfunction:: round(const T)
:project: gcem
.. _signbit-func-ref:
.. doxygenfunction:: signbit(const T)
:project: gcem
.. _sgn-function-reference:
.. doxygenfunction:: sgn(const T)
:project: gcem
.. _sqrt-function-reference:
.. doxygenfunction:: sqrt(const T)
:project: gcem
.. _inv_sqrt-func-ref:
.. doxygenfunction:: inv_sqrt(const T)
:project: gcem
.. _trunc-func-ref:
.. doxygenfunction:: trunc(const T)
:project: gcem
|