Interpolation with the spline method.
Inheritance: Interpolation
Example #1
0
 public MatrixValue Function(MatrixValue original, ScalarValue x)
 {
     var spline = new SplineInterpolation(original);
     var M = new MatrixValue(1, 2);
     M[1, 1].Re = x.Re;
     M[1, 2].Re = spline.ComputeValue(x.Re);
     return M;
 }
Example #2
0
 public MatrixValue Function(MatrixValue original, MatrixValue x)
 {
     var spline = new SplineInterpolation(original);
     return spline.ComputeValues(x);
 }