Polynomial.Division Operator

Divides one Polynomial by another.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static Polynomial operator /(
	Polynomial polynomial1,
	Polynomial polynomial2
)

Parameters

polynomial1  Polynomial
The first polynomial.
polynomial2  Polynomial
The second polynomial.

Return Value

Polynomial
A polynomial that, when multiplied by polynomial2 results in a polynomial that differs from polynomial1 only in the coefficients of degree smaller than the degree of polynomial2.

See Also