BSpline

Description

This function creates spline using the set of points and interpolates the input between them.

First and second derivatives from the spline can be calculated by using the derivative1D function.

BSpline function takes a set of attributes and a set of parameters. The first attrbiute is ‘n’ which has integer type and sets the number of interpolation points. The parameter names have the form ‘yi’ where ‘y’ is letter ‘y’ and ‘i’ is the parameter’s index starting from 0 and have the type double. Likewise, the attribute names have the form ‘xi’.

Attributes (non-fitting parameters)

Name Type Default Description
Uniform      
Order      
NBreak      
StartX      
EndX      
BreakPoints      

Properties (fitting parameters)

Name Default Description
A0 0.0  
A1 0.0  
A2 0.0  
A3 0.0  
A4 0.0  
A5 0.0  
A6 0.0  
A7 0.0  
A8 0.0  
A9 0.0  
A10 0.0  

Categories: FitFunctions | Background

Source

C++ source: BSpline.cpp

C++ header: BSpline.h