Lines Matching refs:m_c
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;
90 m_c = Scalar(1);
110 m_c = n;
164 m_c = numext::real(p)<0 ? Scalar(-1) : Scalar(1);
166 if(r) *r = m_c * p;
170 m_c = 0;
189 m_c = Scalar(1)/u;
190 m_s = -qs*conj(ps)*(m_c/p2);
206 m_c = p1/u;
221 m_c = p<Scalar(0) ? Scalar(-1) : Scalar(1);
227 m_c = Scalar(0);
237 m_c = Scalar(1)/u;
238 m_s = -t * m_c;
248 m_c = -t * m_s;