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
)
Public Shared Function Divide (
p1 As Polynomial,
p2 As Polynomial,
<OutAttribute> ByRef remainder As Polynomial
) As Polynomial
public:
static Polynomial^ Divide(
Polynomial^ p1,
Polynomial^ p2,
[OutAttribute] Polynomial^% remainder
)
static member Divide :
p1 : Polynomial *
p2 : Polynomial *
remainder : Polynomial byref -> Polynomial
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:
PolynomialThe quotient polynomial.
Remarks See Also