+
+| API | Description | Default scalar implementation | SIMD |
+
+ |
+| Basic operations |
+
+ |
+ \anchor cwisetable_abs
+ a.\link ArrayBase::abs abs\endlink(); \n
+ \link Eigen::abs abs\endlink(a); \n
+ m.\link MatrixBase::cwiseAbs cwiseAbs\endlink();
+ |
+ absolute value (\f$ |a_i| \f$) |
+
+ using std::abs; \n
+ abs(a[i]);
+ |
+ SSE2, AVX (ui32,f,d) |
+
+
+| Exponential functions |
+
+
+ |
+ \anchor cwisetable_exp
+ a.\link ArrayBase::exp exp\endlink(); \n
+ \link Eigen::exp exp\endlink(a);
+ |
+ \f$ e \f$ raised to the given power (\f$ e^{a_i} \f$) |
+
+ using std::exp; \n
+ exp(a[i]);
+ |
+ SSE2, AVX (f,d) |
+
+
+ |
+ \anchor cwisetable_log
+ a.\link ArrayBase::log log\endlink(); \n
+ \link Eigen::log log\endlink(a);
+ |
+ natural (base \f$ e \f$) logarithm (\f$ ln({a_i}) \f$) |
+
+ using std::log; \n
+ log(a[i]);
+ |
+ SSE2, AVX (f,d) |
+
+
+ |
+ \anchor cwisetable_log1p
+ a.\link ArrayBase::log1p log1p\endlink(); \n
+ \link Eigen::log1p log1p\endlink(a);
+ |
+ natural (base \f$ e \f$) logarithm of 1 plus \n the given number (\f$ ln({1+a_i}) \f$) |
+ built-in generic implementation based on \c log,\n
+ plus \c using \c std::log1p ; \cpp11 |
+ |
+
+
+| Power functions |
+
+
+| Trigonometric functions |
+
+
+| Hyperbolic functions |
+
+
+| Error and gamma functions |
+
+
+ |
+ \anchor cwisetable_erf
+ a.\link ArrayBase::erf erf\endlink(); \n
+ \link Eigen::erf erf\endlink(a);
+ |
+ error function |
+
+ using std::erf; \cpp11 \n
+ erf(a[i]);
+ |
+ |
+
+
+ |
+ \anchor cwisetable_erfc
+ a.\link ArrayBase::erfc erfc\endlink(); \n
+ \link Eigen::erfc erfc\endlink(a);
+ |
+ complementary error function |
+
+ using std::erfc; \cpp11 \n
+ erfc(a[i]);
+ |
+ |
+
+
+| Nearest integer floating point operations |
+
+
+| Floating point manipulation functions |
+
+
+| Classification and comparison |
+
+
+| Miscellaneous |
+
+
+ |
+ \anchor cwisetable_zeta
+ a.\link ArrayBase::zeta zeta\endlink(b); \n
+ \link Eigen::zeta zeta\endlink(a,b);
+ |
+ Hurwitz zeta function \n \f$ \zeta(a_i,b_i)=\sum_{k=0}^{\infty}(b_i+k)^{\text{-}a_i} \f$ |
+
+ built-in for float and double
+ |
+ |
+
+ |
+
+
+\n
+
+*/
+
+}
\ No newline at end of file
diff --git a/doc/Manual.dox b/doc/Manual.dox
index 70aaa9a42..8940b0070 100644
--- a/doc/Manual.dox
+++ b/doc/Manual.dox
@@ -90,6 +90,9 @@ namespace Eigen {
/** \addtogroup Householder_Module
\ingroup DenseMatrixManipulation_Reference */
+/** \addtogroup CoeffwiseMathFunctions
+ \ingroup DenseMatrixManipulation_chapter */
+
/** \addtogroup QuickRefPage
\ingroup DenseMatrixManipulation_chapter */
diff --git a/doc/eigendoxy.css b/doc/eigendoxy.css
index 3dedbd1d8..6274e6c70 100644
--- a/doc/eigendoxy.css
+++ b/doc/eigendoxy.css
@@ -45,7 +45,7 @@ pre.fragment {
/* Common style for all Eigen's tables */
-table.example, table.manual, table.manual-vl {
+table.example, table.manual, table.manual-vl, table.manual-hl {
max-width:100%;
border-collapse: collapse;
border-style: solid;
@@ -58,7 +58,7 @@ table.example, table.manual, table.manual-vl {
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}
-table.example th, table.manual th, table.manual-vl th {
+table.example th, table.manual th, table.manual-vl th, table.manual-hl th {
padding: 0.5em 0.5em 0.5em 0.5em;
text-align: left;
padding-right: 1em;
@@ -70,7 +70,7 @@ table.example th, table.manual th, table.manual-vl th {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F4F4E5');
}
-table.example td, table.manual td, table.manual-vl td {
+table.example td, table.manual td, table.manual-vl td, table.manual-hl td {
vertical-align:top;
border-width: 1px;
border-color: #cccccc;
@@ -108,15 +108,15 @@ table.example td {
/* standard class for the manual */
-table.manual, table.manual-vl {
+table.manual, table.manual-vl, table.manual-hl {
padding: 0.2em 0em 0.5em 0em;
}
-table.manual th, table.manual-vl th {
+table.manual th, table.manual-vl th, table.manual-hl th {
margin: 0em 0em 0.3em 0em;
}
-table.manual td, table.manual-vl td {
+table.manual td, table.manual-vl td, table.manual-hl td {
padding: 0.3em 0.5em 0.3em 0.5em;
vertical-align:top;
border-width: 1px;
@@ -136,6 +136,16 @@ table.manual-vl th.inter {
border-style: solid solid solid solid;
}
+table.manual-hl td {
+ border-color: #cccccc;
+ border-width: 1px;
+ border-style: solid none solid none;
+}
+
+table td.code {
+ font-family: monospace;
+}
+
h2 {
margin-top:2em;
border-style: none none solid none;
@@ -182,8 +192,8 @@ table.tutorial_code td {
/* Whenever doxygen meets a '\n' or a '.
- * This little hack togehter with table.tutorial_code td.note
+ * the text containing the character into a
.
+ * This little hack together with table.tutorial_code td.note
* aims at fixing this issue. */
table.tutorial_code td.note p.starttd {
margin: 0px;