Lines Matching full:coeffs
72 explicit inline Scaling(const VectorType& coeffs) : m_coeffs(coeffs) {}
74 const VectorType& coeffs() const { return m_coeffs; }
75 VectorType& coeffs() { return m_coeffs; }
79 { return Scaling(coeffs().cwise() * other.coeffs()); }
90 { return coeffs().asDiagonal() * other; }
95 { return other * s.coeffs().asDiagonal(); }
103 { return coeffs().asDiagonal() * other; }
107 { return Scaling(coeffs().cwise().inverse()); }
127 { m_coeffs = other.coeffs().template cast<Scalar>(); }
152 res.linear().diagonal() = coeffs();