InterpolatorGetRequiredDataPoints Method |
Calculates the number of data points needed to interpolate with the desired degree of accuracy.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract int GetRequiredDataPoints(
int degree,
int inputOrder
)
Public MustOverride Function GetRequiredDataPoints (
degree As Integer,
inputOrder As Integer
) As Integer
public:
virtual int GetRequiredDataPoints(
int degree,
int inputOrder
) abstract
abstract GetRequiredDataPoints :
degree : int *
inputOrder : int -> int
Parameters
- degree
- Type: SystemInt32
The degree of polynomial approximation desired. - inputOrder
- Type: SystemInt32
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