Polynomial<T>.Division Operator
Divides one Polynomial<T> by another.
Definition
Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
C#
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.
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
public static Polynomial<T> operator /(
Polynomial<T> polynomial1,
Polynomial<T> polynomial2
)
Parameters
- polynomial1 Polynomial<T>
- The first polynomial.
- polynomial2 Polynomial<T>
- The second polynomial.
Return Value
Polynomial<T>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.