Click or drag to resize

PolynomialDivide Method

Computes the quotient of two polynomials.

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static Polynomial Divide(
	Polynomial p1,
	Polynomial p2,
	out Polynomial remainder
)

Parameters

p1
Type: Meta.NumericsPolynomial
The dividend polynomial.
p2
Type: Meta.NumericsPolynomial
The divisor polynomial.
remainder
Type: Meta.NumericsPolynomial
The remainder polynomial.

Return Value

Type: Polynomial
The quotient polynomial.
Remarks

p1 = q p2 + r

See Also