Package | Description |
---|---|
org.drip.math.spline |
Modifier and Type | Method and Description |
---|---|
static AbstractUnivariate[] |
SegmentBasisSetBuilder.BernsteinPolynomialBasisSet(PolynomialBasisSetParams polybsbp)
This class implements the elastic coefficients for the segment using Bernstein polynomial basis
splines inside - [0,...,1) - Globally [x_0,...,x_1):
y = Sum (A_i*B^i(x)) i = 0,...,n (0 and n inclusive)
where x is the normalized ordinate mapped as
x => (x - x_i-1) / (x_i - x_i-1)
and B^i(x) is the Bernstein basis polynomial of order i.
|
static AbstractUnivariate[] |
SegmentBasisSetBuilder.PolynomialBasisSet(PolynomialBasisSetParams polybsbp)
This class implements the elastic coefficients for the segment using polynomial basis splines inside -
[0,...,1) - Globally [x_0,...,x_1):
y = Sum (A_i*x^i) i = 0,...,n (0 and n inclusive)
where x is the normalized ordinate mapped as
x => (x - x_i-1) / (x_i - x_i-1)
|