Searched refs:m_c (Results 1 – 1 of 1) sorted by relevance
43 JacobiRotation(const Scalar& c, const Scalar& s) : m_c(c), m_s(s) {} in JacobiRotation()45 Scalar& c() { return m_c; } in c()46 Scalar c() const { return m_c; } in 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)); } in transpose()62 JacobiRotation adjoint() const { using numext::conj; return JacobiRotation(conj(m_c), -m_s); } in adjoint()74 Scalar m_c, m_s; variable90 m_c = Scalar(1); in makeJacobi()110 m_c = n; in makeJacobi()[all …]