NewtonInterpolation constructor

const NewtonInterpolation({
  1. required List<InterpolationNode> nodes,
  2. bool forwardDifference = true,
})

Creates a NewtonInterpolation instance from the given interpolation nodes.

Implementation

const NewtonInterpolation({
  required super.nodes,
  this.forwardDifference = true,
});