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
|
+
+
+ \anchor cwisetable_asinh
+ a.\link ArrayBase::asinh asinh\endlink(); \n
+ \link Eigen::asinh asinh\endlink(a);
+ |
+ computes inverse hyperbolic sine |
+
+ using std::asinh; \n
+ asinh(a[i]); |
+ |
+
+
+
+ \anchor cwisetable_acosh
+ a.\link ArrayBase::acosh cohs\endlink(); \n
+ \link Eigen::acosh acosh\endlink(a);
+ |
+ computes hyperbolic cosine |
+
+ using std::acosh; \n
+ acosh(a[i]); |
+ |
+
+
+
+ \anchor cwisetable_atanh
+ a.\link ArrayBase::atanh atanh\endlink(); \n
+ \link Eigen::atanh atanh\endlink(a);
+ |
+ computes hyperbolic tangent |
+
+ using std::atanh; \n
+ atanh(a[i]); |
+ |
+
+
Nearest integer floating point operations |