aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
Commit message (Collapse)AuthorAge
* Enabled class diagrams (requires dot, i.e. graphviz).Gravatar Hauke Heibel2010-01-13
| | | | Adapted the style sheet in order to center class diagrams.
* Added some minor comments.Gravatar Hauke Heibel2010-01-13
| | | | Adapted some of the doc/snippets.
* doc/A05_PortingFrom2To3.dox: fix typosGravatar Jitse Niesen2010-01-09
|
* remove the Triangular suffix to Upper, Lower, UnitLower, etc,Gravatar Gael Guennebaud2010-01-07
| | | | and remove the respective bit flags
* typoGravatar Gael Guennebaud2010-01-06
|
* improved a bit the list of API changesGravatar Gael Guennebaud2010-01-06
|
* Various documentation updates:Gravatar Gael Guennebaud2010-01-06
| | | | | | - update the tutorial - update doc of deprecated cwise function - update cwise doc snippets
* started a page on the porting from Eigen2 to 3, updated a bit the tutorialGravatar Gael Guennebaud2010-01-06
|
* Big renaming:Gravatar Benoit Jacob2010-01-04
| | | | | | start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day.
* Make snippet run successfully again:Gravatar Benoit Jacob2010-01-04
| | | | | | the snippet for 'eval' was taking m=m.transpose() as an example of code that needs an explicit call to eval(), but that doesn't work anymore now that we have the clever assert detecting aliasing issues.
* clarify docs as requested on forumGravatar Benoit Jacob2010-01-02
|
* * Fix bug #79: ei_alignmentOffset was assuming that ptr is multiple ofGravatar Benoit Jacob2010-01-02
| | | | | | | sizeof(Scalar), and that assumption breaks with double on linux x86-32. * Rename ei_alignmentOffset to ei_first_aligned * Rewrite its documentation and part of its body * The variant taking a MatrixBase doesn't need a separate size argument.
* Fix compilation error in doc/examples/class_CwiseBinaryOp.cpp .Gravatar Jitse Niesen2009-12-21
| | | | | This is a follow-up of 9d5478303667bd97f3e20696f8a8c82cb5b2d65f (better work around for empty structs).
* Fixed the bad fix - now the unsupported examples and snippets work on windows.Gravatar Hauke Heibel2009-12-11
|
* Reverted Jitse's change - the targets unsupported_examples and ↵Gravatar Hauke Heibel2009-12-11
| | | | unsupported_snippets are unknown over here.
* Coax doxygen in producing better docs for MatrixFunctions.Gravatar Jitse Niesen2009-12-11
| | | | | | | The //@{ ... //@} in unsupported/Eigen/MatrixFunctions for some reason caused doxygen to list the constructor of the MatrixExponential class as a separate function in the MatrixFunctions module without any reference to the class; very confusing.
* Documentation clean up.Gravatar Jitse Niesen2009-12-08
| | | | | | | | * remove non-existant reference to CwiseAll * define \householder_module (used in HouseholderSequence.h) * update I01_TopicLazyEvaluation.dox - Product is now called GeneralProduct * remove reference to list of examples which was deleted ages ago * rename PartialLU_solve.cpp snippet to PartialPivLU_solve.cpp
* C05_TutorialLinearAlgebra.dox: Correct file nameGravatar Jitse Niesen2009-12-08
|
* Various improvements to the docs for unsupported.Gravatar Jitse Niesen2009-12-07
| | | | | | | * Enable compilation of examples for unsupported. * Fix use of std::vector in BVH example. * Add an example for the matrix exponential. * Bug fixes in unsupported/doc/{examples,snippets}/CMakeLists.txt .
* fix another 'duplicated content in doxygen pages' bug : exclude *.origGravatar Thomas Capricelli2009-11-30
| | | | files
* * eigen2->eigen3Gravatar Benoit Jacob2009-11-19
| | | | | * bump version to 2.91.0 * add FindEigen3.cmake
* Port FullPivLU to PermutationMatrixGravatar Benoit Jacob2009-11-16
|
* PermutationMatrix:Gravatar Benoit Jacob2009-11-16
| | | | | * make multiplication order not be reversed * release-quality documentation
* doxygen : exclude diff filesGravatar Thomas Capricelli2009-11-10
|
* make the complex module appear in doxygen + small documentationGravatar Thomas Capricelli2009-11-10
|
* make FFT appear in doxygen doc, and provide a mininum of documentationGravatar Thomas Capricelli2009-11-10
|
* fix Skyline module doxygen stuffGravatar Thomas Capricelli2009-11-10
|
* merge with main repositoryGravatar Thomas Capricelli2009-11-09
|\
* | revert previous commit on the matter : once doxygen cache is flushedGravatar Thomas Capricelli2009-11-09
| | | | | | | | this gives very bad results
| * * mergeGravatar Benoit Jacob2009-11-09
| |\ | | | | | | | | | * remove a ctor in QuaternionBase as it gives a strange error with GCC 4.4.2.
| * | last round of changes, mainly to return derived types instead of base types, ↵Gravatar Benoit Jacob2009-11-09
| | | | | | | | | | | | and fix various compilation issues
* | | few doc fixesGravatar Thomas Capricelli2009-11-09
| | |
* | | only define groups once in unsupported, in order to prevent ambiguity forGravatar Thomas Capricelli2009-11-09
| | | | | | | | | | | | the group names.
* | | include NonLinearOptimization_Module and NumericalDiff_ModuleGravatar Thomas Capricelli2009-11-09
| |/ |/| | | | | + cleaning
| * simplifications in the ei_solve_impl system, factor out some boilerplate codeGravatar Benoit Jacob2009-11-08
| |
* | rephrase tutorial on MapGravatar Benoit Jacob2009-10-31
| |
| * *port the Cholesky module to the new solve() APIGravatar Benoit Jacob2009-10-29
| | | | | | | | *improve documentation
| * big huge changes, so i dont remember everything.Gravatar Benoit Jacob2009-10-28
| | | | | | | | | | | | | | | | | | | | * renaming, e.g. LU ---> FullPivLU * split tests framework: more robust, e.g. dont generate empty tests if a number is skipped * make all remaining tests use that splitting, as needed. * Fix 4x4 inversion (see stable branch) * Transform::inverse() and geo_transform test : adapt to new inverse() API, it was also trying to instantiate inverse() for 3x4 matrices. * CMakeLists: more robust regexp to parse the version number * misc fixes in unit tests
| * sync the documentation examplesGravatar Benoit Jacob2009-10-26
| |
| * move PartialLU to the new APIGravatar Benoit Jacob2009-10-21
| |
| * * make PartialLU avoid to generate inf/nan when given a singular matrixGravatar Benoit Jacob2009-10-20
| | | | | | | | | | | | | | (result undefined, but at least it won't take forever on intel 387) * add lots of comments, especially to LU.h * fix stuff I had broken in Inverse.h * split inverse test
| * update doc snippetsGravatar Benoit Jacob2009-10-19
| |
| * mergeGravatar Benoit Jacob2009-10-15
| |\ | |/ |/|
* | Added prod() reduction to the AsciiQuickReference.Gravatar Hauke Heibel2009-10-14
| |
* | Added cmake project definitions.Gravatar Hauke Heibel2009-10-02
| |
* | update URL for adol-cGravatar Thomas Capricelli2009-09-27
| |
* | update the sparse tutorial wrt not so recent changes about the filling APIGravatar Gael Guennebaud2009-09-25
| |
| * fix docsGravatar Benoit Jacob2009-09-22
| |
| * convert LU::solve() to the new APIGravatar Benoit Jacob2009-09-22
|/
* update page to explain how to get rid of itGravatar Benoit Jacob2009-09-18
|