Returns an estimate of y'(t) (an estimate of the derivative series) from a solved solution using finite differences on the solution grid.
Solution
const result = Chalkboard.diff.derivative({ t: [0, 1, 2], y: [[0], [1], [4]] }); // Estimates the derivative samples Copy
const result = Chalkboard.diff.derivative({ t: [0, 1, 2], y: [[0], [1], [4]] }); // Estimates the derivative samples
Returns an estimate of y'(t) (an estimate of the derivative series) from a solved solution using finite differences on the solution grid.