Click or drag to resize

HermitePolynomialApproximation.GetRequiredDataPoints Method

Returns the number of data points needed to interpolate with the desired degree of accuracy, which is the ceiling of (degree + 1) / (inputOrder + 1).

Namespace:  AGI.Foundation.NumericalMethods.Advanced
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public static int GetRequiredDataPoints(
	int degree,
	int inputOrder
)

Parameters

degree
Type: System.Int32
The degree of polynomial approximation desired.
inputOrder
Type: System.Int32
The order of the input data.

Return Value

Type: Int32
The number of data points needed to interpolate with the desired degree of accuracy.
See Also