aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* rm ExpressionMaker stuff (weird as I was pretty sure that I had already ↵Gravatar Gael Guennebaud2010-01-22
| | | | removed them)
* lot of cleaning:Gravatar Gael Guennebaud2010-01-22
| | | | | | - clean the *_PUBLIC_INTERFACE_* - update Diagonal, ReturnByValue, ForceAlignedAccess, UnaryView, etc. to support array - many other small stuff
* Added array() to ArrayBase and matrix() to MatrixBase().Gravatar Hauke Heibel2010-01-21
|
* Remove some Array #includes.Gravatar Jitse Niesen2010-01-21
|
* Adapted Geometry includes.Gravatar Hauke Heibel2010-01-21
| | | | Adapted the decomposition documentation regarding the solve signature.
* Added the Array include's warning for GCC.Gravatar Hauke Heibel2010-01-20
|
* Corrected the Array include's deprecation warning for MSVC.Gravatar Hauke Heibel2010-01-20
|
* mergeGravatar Hauke Heibel2010-01-20
|\
* | Moved the Array module to Core.Gravatar Hauke Heibel2010-01-20
| |
| * Fix bug in MatrixBase::setIdentity(int, int).Gravatar Jitse Niesen2010-01-20
|/
* add SSE code (from Intel) for the fast inversion of 4x4 matrices of doubleGravatar Gael Guennebaud2010-01-19
|
* update the fast 4x4 SSE inversion code from more recent Intel's codeGravatar Gael Guennebaud2010-01-19
|
* Get rid off GCC warning on comparing enums from different types.Gravatar Jitse Niesen2010-01-19
|
* fix scalar - matrixGravatar Gael Guennebaud2010-01-18
|
* extend CwiseNullaryOp to support ArrayGravatar Gael Guennebaud2010-01-18
|
* fix both compilation and previous fix : now 'basicstuff' passes again.Gravatar Thomas Capricelli2010-01-18
| | | | (Gael: i dont think you meant removing this setIdentity(), did you?)
* fix !=Gravatar Gael Guennebaud2010-01-18
|
* work around warning about /* inside of a comment (gcc 4.4)Gravatar Benoit Jacob2010-01-16
|
* More documentation improvements.Gravatar Hauke Heibel2010-01-16
|
* Adapted doxygen's new style sheet.Gravatar Hauke Heibel2010-01-15
| | | | Added documentation to some of the typedefs.
* forgot to include this file in previous commitGravatar Gael Guennebaud2010-01-15
|
* remove useless using comp. assignment operatorsGravatar Gael Guennebaud2010-01-15
|
* fix a warningGravatar Gael Guennebaud2010-01-15
|
* allow to multiply a householder sequence and a matrix when one is real and ↵Gravatar Benoit Jacob2010-01-15
| | | | | | one is complex. This is especially important as in bidiagonalization, the band matrix is real.
* New UpperBidiagonalization classGravatar Benoit Jacob2010-01-14
|
* Introduce third template parameter to HouseholderSequence: int Side.Gravatar Benoit Jacob2010-01-14
| | | | | When it's OnTheRight, we read householder vectors as rows above the diagonal. With unit test. The use case will be bidiagonalization.
* compilation fix for UmfPackGravatar Gael Guennebaud2010-01-14
|
* Changed parts of the documentation.Gravatar Hauke Heibel2010-01-14
| | | | | The param keyword is now tparam (in Matrix). Made PlainMatrixType non-internal (currently MatrixBase only); I think this is an important typedef in particular when writing your own template methods.
* Added some minor comments.Gravatar Hauke Heibel2010-01-13
| | | | Adapted some of the doc/snippets.
* Fixes #83.Gravatar Hauke Heibel2010-01-12
|
* Using operator*= is not required in MapBase. Since no other operator*= is ↵Gravatar Hauke Heibel2010-01-12
| | | | present, none of the base class operator*='s may be hidden and all of them should be visible. As far as I was able to verify, this is not affecting GCC. This fixes #84.
* Fixed the ProductReturnType (at least for UnrolledProducts).Gravatar Hauke Heibel2010-01-12
| | | | Fixed operator= (MSVC specific) in Array.
* Fixes #81.Gravatar Hauke Heibel2010-01-12
|
* Add a real plain matrix type to the ei_nested declaration used in product ↵Gravatar Hauke Heibel2010-01-12
| | | | return type.
* Fixed DenseStorageBase typedef (MSVC specific).Gravatar Hauke Heibel2010-01-11
| | | | Unified the ei_plain_matrix_type.
* * Fix a bug in HouseholderQR with mixed fixed/dynamic size: must use ↵Gravatar Benoit Jacob2010-01-11
| | | | | | | | | EIGEN_SIZE_MIN instead of EIGEN_ENUM_MIN, and there are many other occurences throughout Eigen! * HouseholderSequence: - add shift parameter - add essentialVector() method to start abstracting the direction - add unit test in householder.cpp
* Fixed conservativeResize.Gravatar Hauke Heibel2010-01-11
| | | | | Fixed multiple overloads for operator=. Removed debug output.
* Eigen/src/Core/DenseStorageBase.h: add 'typename'Gravatar Jitse Niesen2010-01-11
|
* Fixes unit test swap_3. Friends are not inherited.Gravatar Hauke Heibel2010-01-10
|
* Backed out the removal of the actual resize like implementation. Now, ↵Gravatar Hauke Heibel2010-01-10
| | | | resizing by dimension is optional.
* Fixed swapping and corresponding MSVC compilation.Gravatar Hauke Heibel2010-01-10
|
* Fixed MSVC compilation.Gravatar Hauke Heibel2010-01-10
|
* test/triangular.cpp: isUpper() --> isUpperTriangular()Gravatar Jitse Niesen2010-01-08
| | | | | | | Necessary to get the test to compile after c5d7c9f0def693e77797e6e43cb1fd2e7f8ae2fd . I'm assuming that isUpperTriangular() is the name we want; the alternative is to change Eigen/src/Core/{MatrixBase,TriangularMatrix}.h
* implement BandMatrix::evalTo (thus avoid infinite recursion when assigning a ↵Gravatar Benoit Jacob2010-01-07
| | | | BandMatrix to a Matrix)
* Backed out changeset 58fb27cd566f4057cee914be4cfe4f87abe8dc04Gravatar Benoit Jacob2010-01-07
|
* undoGravatar Benoit Jacob2010-01-07
|
* undo my last commitGravatar Benoit Jacob2010-01-07
|
* Added std::sqrt(std::complex<float>) and std::sqrt(std::complex<double>) ↵Gravatar Trevor Irons2010-01-07
| | | | support to MathFunctions.h
* remove the Triangular suffix to Upper, Lower, UnitLower, etc,Gravatar Gael Guennebaud2010-01-07
| | | | and remove the respective bit flags
* make applyHouseholderOnTheRight take a row vector, not a column vector:Gravatar Benoit Jacob2010-01-07
| | | | this is how it's used in practice.