aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/ConditionEstimator.h
Commit message (Collapse)AuthorAge
* bug #1635: Use infinity from Numtraits instead of creating it manually.Gravatar Christoph Hertzberg2018-12-05
|
* bug #785: Make Cholesky decomposition work for empty matricesGravatar Christoph Hertzberg2018-12-03
|
* Fix with expession template scalar types.Gravatar Gael Guennebaud2016-07-26
|
* Fix function dependenciesGravatar Gael Guennebaud2016-06-03
|
* Disable some long to float conversion warningsGravatar Gael Guennebaud2016-05-26
|
* Cleaning pass on rcond estimator.Gravatar Gael Guennebaud2016-04-14
|
* Add short-circuit to avoid calling matrix norm for empty matrix.Gravatar Rasmus Munk Larsen2016-04-09
|
* A few tiny adjustments to short-circuit logic.Gravatar Rasmus Munk Larsen2016-04-09
|
* Widen short-circuiting ReciprocalConditionNumberEstimate so we don't call ↵Gravatar Rasmus Munk Larsen2016-04-07
| | | | InverseMatrixL1NormEstimate for dec.rows() <= 1.
* Use Index instead of int for indexing and sizes.Gravatar Rasmus Munk Larsen2016-04-07
|
* Remove transpose() method from LLT and LDLT classes as it would imply ↵Gravatar Rasmus Munk Larsen2016-04-07
| | | | | | conjugation. Explicitly cast constants to RealScalar in ConditionEstimator.h.
* Fix bug in alternate lower bound calculation due to missing parentheses.Gravatar Rasmus Munk Larsen2016-04-05
| | | | Make a few expressions more concise.
* Fix docstrings to list all supported decompositions.Gravatar Rasmus Munk Larsen2016-04-04
|
* Addresses comments on Eigen pull request PR-174.Gravatar Rasmus Munk Larsen2016-04-04
| | | | | | | | * Get rid of code-duplication for real vs. complex matrices. * Fix flipped arguments to select. * Make the condition estimation functions free functions. * Use Vector::Unit() to generate canonical unit vectors. * Misc. cleanup.
* Add condition estimation to Cholesky (LLT) factorization.Gravatar Rasmus Munk Larsen2016-04-01
|
* Replace "inline static" with "static inline" for consistency.Gravatar Rasmus Munk Larsen2016-04-01
|
* Fix comments in ConditionEstimator and minor cleanup.Gravatar Rasmus Munk Larsen2016-04-01
|
* Add matrix condition estimator module that implements the Higham/Hager ↵Gravatar Rasmus Munk Larsen2016-04-01
algorithm from http://www.maths.manchester.ac.uk/~higham/narep/narep135.pdf used in LPACK. Add rcond() methods to FullPivLU and PartialPivLU.