Package org.drip.spline.basis
Class PolynomialFunctionSetParams
java.lang.Object
org.drip.spline.basis.PolynomialFunctionSetParams
- All Implemented Interfaces:
FunctionSetBuilderParams
public class PolynomialFunctionSetParams extends java.lang.Object implements FunctionSetBuilderParams
PolynomialFunctionSetParams implements per-segment basis set parameters for the polynomial basis
spline. Currently it holds the number of basis functions. It has the following Functionality:
- PolynomialFunctionSetParams Constructor
- Get the Number of Spline Basis Functions in the Set
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description PolynomialFunctionSetParams(int iNumBasis)PolynomialFunctionSetParams constructor -
Method Summary
Modifier and Type Method Description intnumBasis()Get the Number of Spline Basis Functions in the SetMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
PolynomialFunctionSetParams
public PolynomialFunctionSetParams(int iNumBasis) throws java.lang.ExceptionPolynomialFunctionSetParams constructor- Parameters:
iNumBasis- Number of Spline Basis Functions in the Set- Throws:
java.lang.Exception- Thrown if the Inputs are Invalid
-
-
Method Details
-
numBasis
public int numBasis()Get the Number of Spline Basis Functions in the Set- Returns:
- The Number of Spline Basis Functions in the Set
-