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.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static (Polynomial , Polynomial ) DivideRemainder(
Polynomial a,
Polynomial b
)
Parameters
- a Polynomial
- Left polynomial
- b Polynomial
- Right polynomial
Return Value
ValueTuplePolynomial,
PolynomialA tuple holding quotient in first and remainder in second
See Also