Jacobi.h | 43 JacobiRotation(const Scalar& c, const Scalar& s) : m_c(c), m_s(s) {} 45 Scalar& c() { return m_c; } 46 Scalar c() const { return m_c; } 54 return JacobiRotation(m_c * other.m_c - conj(m_s) * other.m_s, 55 conj(m_c * conj(other.m_s) + conj(m_s) * conj(other.m_c))); 59 JacobiRotation transpose() const { using numext::conj; return JacobiRotation(m_c, -conj(m_s)); } 62 JacobiRotation adjoint() const { using numext::conj; return JacobiRotation(conj(m_c), -m_s); } 74 Scalar m_c, m_s member in class:Eigen::JacobiRotation [all...] |