Package org.drip.spline.bspline
Class SegmentBasisFunctionSet
java.lang.Object
org.drip.spline.basis.FunctionSet
org.drip.spline.bspline.SegmentBasisFunctionSet
public class SegmentBasisFunctionSet extends FunctionSet
SegmentBasisFunctionSet class implements per-segment function set for B Splines and tension
splines. Derived implementations expose explicit targeted basis functions.
- SegmentBasisFunctionSet Constructor
- Retrieve the Tension Parameter
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description SegmentBasisFunctionSet(int basisCountToUse, double tension, R1ToR1[] basisHatFunctionArray)SegmentBasisFunctionSet constructor -
Method Summary
Modifier and Type Method Description doubletension()Retrieve the Tension ParameterMethods inherited from class org.drip.spline.basis.FunctionSet
indexedBasisFunction, numBasisMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
SegmentBasisFunctionSet
public SegmentBasisFunctionSet(int basisCountToUse, double tension, R1ToR1[] basisHatFunctionArray) throws java.lang.ExceptionSegmentBasisFunctionSet constructor- Parameters:
basisCountToUse- Number of Basis in the Hat Basis Set to Usetension- Tension ParameterbasisHatFunctionArray- The Hat Representation Function Set- Throws:
java.lang.Exception- Thrown if the inputs are invalid
-
-
Method Details
-
tension
public double tension()Retrieve the Tension Parameter- Returns:
- The Tension Parameter
-