Lines Matching refs:m_matS
117 …lver() : m_eivec(), m_alphas(), m_betas(), m_isInitialized(false), m_realQZ(), m_matS(), m_tmp() {} in GeneralizedEigenSolver()
132 m_matS(size, size), in GeneralizedEigenSolver()
155 m_matS(A.rows(), A.cols()),
272 MatrixType m_matS; variable
303 m_matS = m_realQZ.matrixS(); in compute()
313 if (i == A.cols() - 1 || m_matS.coeff(i+1, i) == Scalar(0)) in compute()
315 m_alphas.coeffRef(i) = m_matS.coeff(i, i); in compute()
321 Scalar p = Scalar(0.5) * (m_matS.coeff(i, i) - m_matS.coeff(i+1, i+1)); in compute()
322 Scalar z = sqrt(abs(p * p + m_matS.coeff(i+1, i) * m_matS.coeff(i, i+1))); in compute()
323 m_alphas.coeffRef(i) = ComplexScalar(m_matS.coeff(i+1, i+1) + p, z); in compute()
324 m_alphas.coeffRef(i+1) = ComplexScalar(m_matS.coeff(i+1, i+1) + p, -z); in compute()