diff options
author | Rasmus Munk Larsen <rmlarsen@google.com> | 2019-01-14 13:26:34 -0800 |
---|---|---|
committer | Rasmus Munk Larsen <rmlarsen@google.com> | 2019-01-14 13:26:34 -0800 |
commit | 2c5843dbbbcb5b925e06d75f58cc3bc09f19c3bb (patch) | |
tree | 4f2ecbd1babffdf1bb100ce8204881409b076d9f /doc | |
parent | 1c6e6e2c3f27c2fc2b2f4b15b4dc047eee6098dc (diff) |
Update documentation.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CoeffwiseMathFunctionsTable.dox | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/CoeffwiseMathFunctionsTable.dox b/doc/CoeffwiseMathFunctionsTable.dox index af1251226..e14eaf615 100644 --- a/doc/CoeffwiseMathFunctionsTable.dox +++ b/doc/CoeffwiseMathFunctionsTable.dox @@ -321,6 +321,43 @@ This also means that, unless specified, if the function \c std::foo is available <td></td> </tr> <tr> +<tr> + <td class="code"> + \anchor cwisetable_asinh + a.\link ArrayBase::asinh asinh\endlink(); \n + \link Eigen::asinh asinh\endlink(a); + </td> + <td>computes inverse hyperbolic sine</td> + <td class="code"> + using <a href="http://en.cppreference.com/w/cpp/numeric/math/asinh">std::asinh</a>; \n + asinh(a[i]);</td> + <td></td> +</tr> +<tr> + <td class="code"> + \anchor cwisetable_acosh + a.\link ArrayBase::acosh cohs\endlink(); \n + \link Eigen::acosh acosh\endlink(a); + </td> + <td>computes hyperbolic cosine</td> + <td class="code"> + using <a href="http://en.cppreference.com/w/cpp/numeric/math/acosh">std::acosh</a>; \n + acosh(a[i]);</td> + <td></td> +</tr> +<tr> + <td class="code"> + \anchor cwisetable_atanh + a.\link ArrayBase::atanh atanh\endlink(); \n + \link Eigen::atanh atanh\endlink(a); + </td> + <td>computes hyperbolic tangent</td> + <td class="code"> + using <a href="http://en.cppreference.com/w/cpp/numeric/math/atanh">std::atanh</a>; \n + atanh(a[i]);</td> + <td></td> +</tr> +<tr> <th colspan="4">Nearest integer floating point operations</th> </tr> <tr> |