Samples a solution at a time using linear interpolation between the nearest grid points. (No extrapolation as it clamps to endpoints.)
The solution.
The time to sample at.
const result = Chalkboard.diff.at({ t: [0, 1, 2], y: [[0], [1], [4]] }, 1.5); // Interpolates the solution at t = 1.5 Copy
const result = Chalkboard.diff.at({ t: [0, 1, 2], y: [[0], [1], [4]] }, 1.5); // Interpolates the solution at t = 1.5
Samples a solution at a time using linear interpolation between the nearest grid points. (No extrapolation as it clamps to endpoints.)