Examples
Basic Examples (2)
Find the derivative of data sampled from a function:
Find the derivative of {x,y} data sampled from a function:
Scope (4)
The default method, "Center" generates new points between each of the original x-values using values from both sides to approximate the derivative:
The method, "Forward" generates new points at each of the original x-values using the next values to determine the derivative:
The method, "Forward" generates new points at each of the original x-values using the previous values to determine the derivative:
The method, "Fourier" is appropriate for larger sets of oscillatory data:
Options (3)
A small amount of noise in data can create significant errors in ListD:
By increasing the "WindowSize" the derivative is established by from the best local fit to the points:
Smoothing the data first to remove noise has a similar effect but often produces less smooth results for the same amount of smoothing:
Possible Issues (1)
The "Fourier" method is only supported for regularly sampled data:
Version History
-
1.0.1
– 01 April 2022
-
1.0.0
– 28 March 2022
Related Resources