RationalCubicSplineSplineB2 Method |
Computes the 2nd derivative vector for interior points, given boundary values and
the coefficients computed by `SplineA`.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxprotected void SplineB2(
double p,
IReadOnlyList<double> dx,
IReadOnlyList<double> y,
Vector<double> y2,
Vector<double> f,
IReadOnlyList<double> z
)
Parameters
- p Double
- Smoothing parameter.
- dx IReadOnlyListDouble
- Abscissa difference vector.
- y IReadOnlyListDouble
- Ordinate vector.
- y2 VectorDouble
-
On input, a 2nd derivative vector with elements y2(lo) and y2(hi) supplied by the user.
On output, the 2nd derivative vector with elements y2(i), i = lo+1...hi-1, newly calculated.
- f VectorDouble
- Working vector.
- z IReadOnlyListDouble
- The coefficients computed by `SplineA`.
See Also