Click or drag to resize

Polynomial(Int32, Int32) Constructor

Creates a polynomial with specified positive and negative exponent orders.

Namespace: Altaxo.Calc.FitFunctions.General
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public Polynomial(
	int polynomialOrder_PositiveExponents,
	int polynomialOrder_NegativeExponents
)

Parameters

polynomialOrder_PositiveExponents  Int32
Order of positive exponent terms (>=0).
polynomialOrder_NegativeExponents  Int32
Order of negative exponent terms (>=0).
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown if either order is negative.
See Also