SylvesterMatrix constructor

SylvesterMatrix({
  1. required List<Complex> coefficients,
})

The constructor requires complex coefficients for the polynomial P(x).

Implementation

SylvesterMatrix({
  required List<Complex> coefficients,
}) : _coefficients = UnmodifiableListView(
        List<Complex>.from(coefficients),
      );