aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* Avoid inefficient 2x2 LU. Move atanh to internal for maintainability.Gravatar Chen-Pang He2012-08-30
|
* forward resize() function from Array/Matrix-Wrapper to the nested expression ↵Gravatar Gael Guennebaud2012-08-30
| | | | such that mat.array().resize(a,b) is now allowed.
* Fix out-of-range memory access in GEMV (the memory was not used for the ↵Gravatar Gael Guennebaud2012-08-30
| | | | | | | computation, only to assemble unaligned packets from aligned packet loads) (transplanted from 221f54698c2f6690da8c0f44c1e31e55118dedab )
* Tidy up and write dox.Gravatar Chen-Pang He2012-08-28
|
* workaround clang bug (see http://forum.kde.org/viewtopic.php?f=74&t=102653)Gravatar Gael Guennebaud2012-08-27
|
* fix a typo in commit 324ecf153b9b9ab85297e3087f0376e6c55f78fcGravatar Gael Guennebaud2012-08-27
| | | | (regarding MKL on windows)
* fix bug #499: the image was missing because of a dependency issue when ↵Gravatar Gael Guennebaud2012-08-27
| | | | building/executing the "special" examples
* matrix power: MatrixBase::pow(RealScalar) and MatrixBase::pow(T) where T is ↵Gravatar jdh82012-08-15
| | | | integral type
* Add missing const in some castsGravatar Gael Guennebaud2012-08-05
|
* Fix precision regression when attempting to fix underflow issues.Gravatar Gael Guennebaud2012-08-05
|
* fix bug #495: remove too aggressive EIGEN_FLATTEN_ATTRIB attributeGravatar Gael Guennebaud2012-08-02
| | | | (after some benchmarking, it was not useful anymore)
* fix warningGravatar Gael Guennebaud2012-08-01
|
* fix lower acceptable bound of SSE pexp for doubleGravatar Gael Guennebaud2012-07-31
|
* Eigenvalues module: Implement setMaxIterations() methods.Gravatar Jitse Niesen2012-07-28
|
* add an example for GeneralizedEigenSolverGravatar Gael Guennebaud2012-07-28
|
* fix various regressions with MKL supportGravatar Gael Guennebaud2012-07-28
|
* RealQZ: added example and some code commentsGravatar Alexey Korepanov2012-07-28
|
* add SSE pexp function for double, make use of _mm_floor_p* for pexp with SSE4.1Gravatar Gael Guennebaud2012-07-27
|
* extend quotient functor to allow for mixed types (complex-real)Gravatar Gael Guennebaud2012-07-27
|
* Add a preliminary GeneralizedEigenSolver computing the eigenvalues of Av=lBv ↵Gravatar Gael Guennebaud2012-07-26
| | | | | | with A and B general real matrices. Currently only the eigenvalues are reported.
* RealSchur: improve speed of computeNormOfTGravatar Gael Guennebaud2012-07-26
|
* RealQZ: improve computeNorms speed, improve shift accuracy (better to do a/b ↵Gravatar Gael Guennebaud2012-07-26
| | | | | | than a*(1/b)), update API to set the maximum number of iterations
* SparseMatrix: add missing ctor for ReturnByValueGravatar Gael Guennebaud2012-07-25
|
* RealQZ: bug in pushDownZero fixed tooGravatar Alexey Korepanov2012-07-25
|
* RealQZ: bug in splitOffTwoRows fixedGravatar Alexey Korepanov2012-07-25
|
* Add static assert that objects on stacks are not too big (bug #491).Gravatar Jitse Niesen2012-07-17
|
* Fix aliasing issue in sparse matrix assignment.Gravatar Gael Guennebaud2012-07-25
| | | | (m=-m; or m=m.transpose(); with m sparse work again)
* do not apply plane rotation when it is exactly the identityGravatar Gael Guennebaud2012-07-24
|
* RealQZ: optimize general hessenberg to not apply rotations to zero entries.Gravatar Gael Guennebaud2012-07-24
|
* real QZ: update licenseGravatar Gael Guennebaud2012-07-24
|
* Add a RealQZ class: a generalized Schur decomposition for real matricesGravatar Alexey Korepanov2012-07-11
|
* Allow user to specify max number of iterations (bug #479).Gravatar Jitse Niesen2012-07-24
|
* Use EISPACK's strategy re max number of iters in Schur decomposition (bug #479).Gravatar Jitse Niesen2012-07-22
|
* LDLT: Report sign consistent with D for indefinite matrices.Gravatar Jitse Niesen2012-07-22
| | | | See http://forum.kde.org/viewtopic.php?f=74&t=106942
* Fix some illegal memory access in sparse conservativeResize()Gravatar Jitse Niesen2012-07-20
|
* bug #449: add SparseMatrix::conservativeResize featureGravatar Benjamin Piwowarski2012-07-19
|
* Silence clang warning about && inside ||Gravatar Jitse Niesen2012-07-14
|
* Evaluators: Fixed bug caused by Diagonal dynamic index change.Gravatar Jitse Niesen2012-07-14
| | | | This caused the evaluators unit test to fail.
* clean Eigen2Support wrt KDE mentionsGravatar Gael Guennebaud2012-07-14
|
* fix bug #485: conflict between a typedef and template type parameterGravatar Gael Guennebaud2012-07-13
|
* Add a EIGEN_MPL2_ONLY build option to generate compiler errors when ↵Gravatar Benoit Jacob2012-07-13
| | | | including non-MPL2 modules
* Manual MPL2 relicensing fixesGravatar Benoit Jacob2012-07-13
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* Add a DynamicIndex constant for signed quantities and use it to fix the conflictGravatar Gael Guennebaud2012-07-10
| | | | | between Diagonal<S,-1> (the first sub diagonal) and a runtime super/sub diagonal which is now: Diagonal<S,DynamicIndex>
* fix computation of fixed size sub/super diagonal sizeGravatar Gael Guennebaud2012-07-10
|
* Fix possible underflow issues in SelfAdjointEigenSolverGravatar Gael Guennebaud2012-07-10
|
* Evaluators: Remove member variables if known at compile-time.Gravatar Jitse Niesen2012-07-06
| | | | Also, use composition instead of inheritance in EvalToTemp evaluator.
* fix compilation with MSVCGravatar Gael Guennebaud2012-07-05
|
* Fix bug #480: workaround the Android NDK defining isfinite as a macroGravatar Gael Guennebaud2012-07-05
|
* bug #481 step 1: add a new Ref<> class for non templated function argumentsGravatar Gael Guennebaud2012-07-05
|