Notes
-----
- Weights
- ~~~~~~~
+ *Weights*
The returned :class:`Data` block shares its x vector with the
input data. The ith df/dx value in the returned data is
The default scheme is central differencing.
- Boundary conditions
- ~~~~~~~~~~~~~~~~~~~
+ *Boundary conditions*
- These could be configurable in principle. The current scheme just
- extrapolates virtual points out to negative `i` following::
+ The boundary conditions could be configurable in principle. The
+ current scheme just extrapolates virtual points out to negative
+ `i` following::
f[i<0] = 2*f[0] - f[-i]