Click or drag to resize

PolynomialDivideRemainder(Polynomial, Polynomial) Method

Euclidean long division of two polynomials, returning the quotient q and remainder r of the two polynomials a and b such that a = q*b + r

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static (Polynomial , Polynomial ) DivideRemainder(
	Polynomial a,
	Polynomial b
)

Parameters

a  Polynomial
Left polynomial
b  Polynomial
Right polynomial

Return Value

ValueTuplePolynomial, Polynomial
A tuple holding quotient in first and remainder in second
See Also