Lines Matching refs:conj
53 using numext::conj;
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()
110 m_s = - sign_t * (numext::conj(y) / abs(y)) * abs(t) * n; in makeJacobi()
161 using numext::conj; in makeGivens()
191 m_s = -qs*conj(ps)*(m_c/p2); in makeGivens()
208 m_s = -conj(ps) * (q/u); in makeGivens()
340 x[i] = c * xi + numext::conj(s) * yi; in apply_rotation_in_the_plane()
341 y[i] = -s * xi + numext::conj(c) * yi; in apply_rotation_in_the_plane()
388 x[i] = c * xi + numext::conj(s) * yi; in apply_rotation_in_the_plane()
389 y[i] = -s * xi + numext::conj(c) * yi; in apply_rotation_in_the_plane()
421 *x = c * xi + numext::conj(s) * yi; in apply_rotation_in_the_plane()
422 *y = -s * xi + numext::conj(c) * yi; in apply_rotation_in_the_plane()