mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Merge
This commit is contained in:
@@ -34,8 +34,8 @@ template<typename T>
|
||||
void test2dHyperbolicRotation(double tol)
|
||||
{
|
||||
Matrix<std::complex<T>,2,2> A, B, C;
|
||||
T angle, ch = std::cosh(1);
|
||||
std::complex<T> ish(0, std::sinh(1));
|
||||
T angle, ch = std::cosh((T)1);
|
||||
std::complex<T> ish(0, std::sinh((T)1));
|
||||
|
||||
A << ch, ish, -ish, ch;
|
||||
MatrixPower<Matrix<std::complex<T>,2,2> > Apow(A);
|
||||
|
||||
Reference in New Issue
Block a user