AW: Extending math4.legacy with clamped spline interpolation

2022-10-06 Thread Michael.Scholz
Gilles wrote: > [...] > Could you perhaps open a JIRA[1] report? You can then attach a patch, with > use cases, from which we can further discuss what API changes would best > handle them. > [1] https://issues.apache.org/jira/browse/MATH As recommended by you, I just filed this issue as feature

Re: Extending math4.legacy with clamped spline interpolation

2022-09-02 Thread Gilles Sadowski
Hello. Le ven. 2 sept. 2022 à 19:01, a écrit : > > Thank you Gilles for your detailed response! > > Gilles wrote: > > [...] > > How about "SplineInterpolator" provide a factory method to select one or the > > other implementation? > > I.e. something like > > ---CUT--- > > public

AW: Extending math4.legacy with clamped spline interpolation

2022-09-02 Thread Michael.Scholz
Thank you Gilles for your detailed response! Gilles wrote: > [...] > How about "SplineInterpolator" provide a factory method to select one or the > other implementation? > I.e. something like > ---CUT--- > public SplineInterpolator implements UnivariateInterpolator { > /** Interpolation

Re: Extending math4.legacy with clamped spline interpolation

2022-08-12 Thread Gilles Sadowski
Hello. Le ven. 12 août 2022 à 16:31, a écrit : > > Hello math community! > > The current math4.legacy.analysis.interpolation.SplineInterpolator implements > an unclamped (natural) spline. We recently implemented the clamped spline > which offers additional parameterization of starting and

Extending math4.legacy with clamped spline interpolation

2022-08-12 Thread Michael.Scholz
Hello math community! The current math4.legacy.analysis.interpolation.SplineInterpolator implements an unclamped (natural) spline. We recently implemented the clamped spline which offers additional parameterization of starting and ending slopes. This extension we would like to contribute as a