RationalCubicSplineSplineB1 Method |
Computes the 1st 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 SplineB1(
double p,
IReadOnlyList<double> dx,
IReadOnlyList<double> y,
Vector<double> y1,
Vector<double> f,
IReadOnlyList<double> z
)
Parameters
- p Double
- Smoothing parameter.
- dx IReadOnlyListDouble
- Inverse abscissa difference vector.
- y IReadOnlyListDouble
- Ordinate vector.
- y1 VectorDouble
-
On input, a 1st derivative vector with elements y1(lo) and y1(hi) supplied by the user.
On output, the 1st derivative vector with elements y1(i), i = lo+1...hi-1, newly calculated.
- f VectorDouble
- Working vector.
- z IReadOnlyListDouble
- The coefficients computed by `SplineA`.
See Also