aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/Manual.dox
Commit message (Collapse)AuthorAge
* Remove Eigen2ToEigen3 migration page (obsolete since 3.3)Gravatar Gael Guennebaud2019-01-16
|
* Fix page nestingGravatar Gael Guennebaud2018-12-05
|
* doxygen does not like \addtogroup and \ingroup in the same lineGravatar Gael Guennebaud2018-11-14
|
* Add manual doc on STL-compatible iteratorsGravatar Gael Guennebaud2018-11-12
|
* Add and update manual pages for slicing, indexing, and reshaping.Gravatar Gael Guennebaud2018-11-09
|
* cmake: added Eigen3::Eigen imported targetGravatar Sergiu Deitsch2016-11-22
| | | | | (grafted from a287140f7292b9c15719bc6a3a4494ac7874e3cd )
* Doc: add an exemple showing how custom expression can be advantageously ↵Gravatar Gael Guennebaud2016-08-30
| | | | implemented via CwiseNullaryOp.
* Doc: split customizing-eigen page into sub-pages and re-structure a bit the ↵Gravatar Gael Guennebaud2016-08-30
| | | | different topics
* Split BLAS/LAPACK versus MKL documentationGravatar Gael Guennebaud2016-07-26
|
* Add a doc page summarizing the true speed of Eigen's decompositions.Gravatar Gael Guennebaud2016-07-21
|
* Add documentation and exemples for inplace decomposition.Gravatar Gael Guennebaud2016-07-04
|
* Doc: start of a table summarizing coefficient-wise math functions.Gravatar Gael Guennebaud2016-06-01
|
* Add exemples for reshaping/slicing with Map.Gravatar Gael Guennebaud2016-02-06
|
* Add matrix-free solver exampleGravatar Gael Guennebaud2015-12-07
|
* Add a documentation page for common pitfallsGravatar Gael Guennebaud2015-09-02
|
* New doc page on implementing a new expression class.Gravatar Jitse Niesen2014-09-27
|
* Mark internal namespace as \internalGravatar Chen-Pang He2014-07-06
|
* Move Doxygen-only stuff to *.doxGravatar Chen-Pang He2014-07-05
|
* Add a minimalistic page on CUDA with Eigen.Gravatar Gael Guennebaud2014-01-24
|
* Add doc page on computing Least Squares.Gravatar Jitse Niesen2014-01-18
|
* Fix some doxygen errors and warnings.Gravatar Jitse Niesen2013-07-02
|
* SparseQR: clean a bit the documentation, fix rows/cols methods, remove rowsQ ↵Gravatar Gael Guennebaud2013-01-12
| | | | methods and rename matrixQR to matrixR.
* Big changes in Eigen documentation:Gravatar Gael Guennebaud2013-01-05
- Organize the documentation into "chapters". - Each chapter include many documentation pages, reference pages organized as modules, and a quick reference page. - The "Chapters" tree is created using the defgroup/ingroup mechanism, even for the documentation pages (i.e., .dox files for which I added an \eigenManualPage macro that we can switch between \page or \defgroup ). - Add a "General topics" entry for all pages that do not fit well in the previous "chapters". - The highlevel struture is managed by a new eigendoxy_layout.xml file. - remove the "index" and quite useless pages (namespace list, class hierarchy, member list, file list, etc.) - add the javascript search-engine. - add the "treeview" panel. - remove \tableofcontents (replace them by a custom \eigenAutoToc macro to be able to easily re-enable if needed). - add javascript to automatically generate a TOC from the h1/h2 tags of the current page, and put the TOC in the left side panel. - overload various javascript function generated by doxygen to: - remove the root of the treeview - remove links to section/subsection from the treeview - automatically expand the "Chapters" section - automatically expand the current section - adjust the height of the treeview to take into account the TOC - always use the default .css file, eigendoxy.css now only includes our modifications - use Doxyfile to specify our logo - remove cross references to unsupported modules (temporarily)