Package jahuwaldt.tools.math
Interface BasisFunction
-
- All Known Implementing Classes:
PolynomialFit
public interface BasisFunction
Defines the interface for a basis function as required by the ModelData class.Modified by: Joseph A. Huwaldt
- Version:
- February 23, 2025
- Author:
- Joseph A. Huwaldt Date: October 21, 2002
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
func(double x, double[] p)
Basis function that takes an input x and calculates the parameters of the function placing them in p[].int
getMinNumCoef()
Method that returns the minimum number of coefficients allowed by this basis function.
-
-
-
Method Detail
-
getMinNumCoef
int getMinNumCoef()
Method that returns the minimum number of coefficients allowed by this basis function.- Returns:
- The minimum number of coefficients allowed by this basis function.
-
func
void func(double x, double[] p)
Basis function that takes an input x and calculates the parameters of the function placing them in p[].- Parameters:
x
- The function input parameter.p
- The array to hold the output parameters.
-
-