aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
Commit message (Collapse)AuthorAge
* fix compilation of LU class exampleGravatar Benoit Jacob2011-01-24
|
* Document HouseholderSequence.Gravatar Jitse Niesen2011-01-02
| | | | | Incomplete: I did not explain the difference between OnTheLeft and OnTheRight, and there is only one example.
* fix compile errors in Tridiagonalization and in doc examplesGravatar Benoit Jacob2010-12-30
|
* In QuickRefPage LinSpaced is improperly documented.Gravatar Trevor Irons2010-12-29
|
* Rename EIGEN_DENSESTORAGEBASE_PLUGIN to EIGEN_PLAINOBJECTBASE_PLUGIN.Gravatar Jitse Niesen2010-12-29
|
* Mention ptr_fun in docs for .unaryExpr()Gravatar Jitse Niesen2010-12-27
|
* Extend doc page on preprocessor directives.Gravatar Jitse Niesen2010-12-27
|
* Move doxygen comments for EIGEN_NO_DEBUG from source to I14.Gravatar Jitse Niesen2010-12-27
| | | | | | This reverts changeset 76fbe94279bda314e717cb3f98b46b253d081993 . Benoit and I agree that my approach there (to use doxygen comments) pollutes the code too much.
* Move section on preprocessor directives from I00 to its own page.Gravatar Jitse Niesen2010-12-27
|
* Finish doc page on aliasing.Gravatar Jitse Niesen2010-12-27
|
* remove EIGEN_REF_TO_TEMPORARY, clarify docsGravatar Benoit Jacob2010-12-25
|
* Fix compilation of Tridiagonalization_diagonal example.Gravatar Jitse Niesen2010-12-12
| | | | | | After changeset 0d6321225786bc3d95f1dbe5236f07c5e5e96179 , matrixT() is a real matrix even if the matrix which is decomposed is complex.
* add main ei_* functions into Eigen2SupportGravatar Gael Guennebaud2010-12-03
|
* add a word about the ei_ prefix change in Eigen2 -> Eigen3 doc page.Gravatar Gael Guennebaud2010-12-03
|
* make example compileGravatar Benoit Jacob2010-11-24
|
* minor fixesGravatar Benoit Jacob2010-11-24
|
* some dox tweaksGravatar Benoit Jacob2010-11-24
|
* make UpperBidiagonalization internal: don't want to support it, it's not used.Gravatar Benoit Jacob2010-11-23
| | | | Keeping it because it tests BandMatrix.
* Docs: aliasing and component-wise operations.Gravatar Jitse Niesen2010-11-16
|
* Correct std::map fix (two commits ago); copy fix to aligned_allocator doc.Gravatar Jitse Niesen2010-11-12
|
* Docs: correct declaration of aligned std::map in TopicStlContainers.Gravatar Jose Luis Blanco2010-11-12
|
* add eigen2support Transform typedefs, add Eigen2To3 section on TransformGravatar Benoit Jacob2010-10-29
|
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* Improved I13_FunctionsTakingEigenTypes.dox.Gravatar Hauke Heibel2010-10-21
| | | | Removed the r-value reference part and focused on EIGEN_REF_TO_TEMPORARY only.
* fix typo and rephrase sentenceGravatar Benoit Jacob2010-10-20
|
* renaming: ei_matrix_storage -> DenseStorageGravatar Benoit Jacob2010-10-20
| | | | DenseStorageBase -> PlainObjectBase
* rename PlanarRotation -> JacobiRotationGravatar Benoit Jacob2010-10-19
|
* allows blocks of code to be larger than the page body (like tables)Gravatar Gael Guennebaud2010-10-19
|
* update the position of the owlGravatar Gael Guennebaud2010-10-19
|
* factorize CSS code, make use of the "manual" class when appropriate, clean ↵Gravatar Gael Guennebaud2010-10-19
| | | | the style of the big linear algebra table
* increase css max-widthGravatar Benoit Jacob2010-10-19
|
* mergeGravatar Benoit Jacob2010-10-19
|\
* | specify max-width in em not pxGravatar Benoit Jacob2010-10-19
| |
| * factorize CSS code, make use of the "manual" class when appropriate, clean ↵Gravatar Gael Guennebaud2010-10-19
|/ | | | the style of the big linear algebra table
* css update: max-width and marginsGravatar Benoit Jacob2010-10-19
|
* move tables from class "tutorial_code" to "example"Gravatar Benoit Jacob2010-10-19
| | | | also remove a align="center" in the Aliasing page -- it doesn't make sense to have 1 centered table page when all others are left aligned.
* update style of the quick ref guideGravatar Gael Guennebaud2010-10-19
|
* update CSS to doxygen 1.7.2, new CSS and cleaning of the tutorialGravatar Gael Guennebaud2010-10-19
|
* improvements in pages 5 and 7 of the tutorial.Gravatar Benoit Jacob2010-10-18
|
* improvements in tutorial page 4 : block operationsGravatar Benoit Jacob2010-10-18
|
* fixed table htmlGravatar Benoit Jacob2010-10-18
|
* add jacobiSvd() method, update test & docsGravatar Benoit Jacob2010-10-17
|
* doc updates/improvementsGravatar Benoit Jacob2010-10-15
|
* update the porting guideGravatar Benoit Jacob2010-10-15
|
* JacobiSVD:Gravatar Benoit Jacob2010-10-14
| | | | | | * fix preallocating constructors, allocate U and V of the right size for computation options * complete documentation and internal comments * improve unit test, test inf/nan values
* remove the Taucs backend : Taucs is not maintained anymore and the backend ↵Gravatar Gael Guennebaud2010-10-06
| | | | was crap anyway
* Updates to the Sparse unsupported solvers module.Gravatar Romain Bossart2010-10-04
| | | | | | | | * change Sparse* specialization's signatures from <..., int Backend> to <..., typename Backend>. Update SparseExtra accordingly to use structs instead of the SparseBackend enum. * add SparseLDLT Cholmod specialization * for Cholmod and UmfPack, SparseLU, SparseLLT and SparseLDLT now use ei_solve_retval and have the new solve() method (to be closer to the 3.0 API). * fix doc
* fix geometry tutorial regarding the need to specify the "mode"Gravatar Gael Guennebaud2010-10-06
|
* Docs: Improved the docs for writing functions taking Eigen types.Gravatar Hauke Heibel2010-08-27
| | | | | | - Removed the wrong statement about the MSVC compiler. - Reformulated "simple functions" usage. - Reformulated the summary paragraph about writable parameters.
* Docs: add section on resolving the aliasing issue.Gravatar Jitse Niesen2010-08-23
|