aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/matrix_square_root.cpp
Commit message (Collapse)AuthorAge
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with ↵Gravatar Gael Guennebaud2018-07-17
| | | | | | | | | EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc
* Add test for matrix power.Gravatar Chen-Pang He2012-08-27
| | | | Use Christoph Hertzberg's suggestion to use exponent laws.
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* Fix and test MatrixSquareRoot for 1-by-1 matrices.Gravatar Jitse Niesen2011-06-07
|
* Implement and document MatrixBase::sqrt().Gravatar Jitse Niesen2011-05-09
|
* Implement square root for real matrices via Schur.Gravatar Jitse Niesen2011-05-08
|
* Implement matrix square root for complex matrices.Gravatar Jitse Niesen2011-05-07
I hope to implement the real case soon, but it's a bit more complicated due to the 2-by-2 blocks in the real Schur decomposition.