RationalCurve Constructor

Constructs a new RationalCurve with the specified degrees in the numerator and the denominator.

Definition

Namespace: Numerics.NET.Curves.Nonlinear
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public RationalCurve(
	int degreeOfNumerator,
	int degreeOfDenominator
)

Parameters

degreeOfNumerator  Int32
The degree of the polynomial in the numerator.
degreeOfDenominator  Int32
The degree of the polynomial in the denominator.

Exceptions

ArgumentOutOfRangeException

degreeOfNumerator is less than zero.

-or-

degreeOfDenominator is less than zero.

See Also