@@ -11,7 +11,7 @@ def splinediff(x, dt_or_t, params=None, options=None, degree=3, s=None, num_iter
1111 scipy.interpolate.UnivariateSpline. Variable step size is supported with equal ease as uniform step size.
1212
1313 :param np.array[float] x: data to differentiate. May contain NaN values (missing data); NaNs are excluded from
14- fitting and imputed by spline interpolation.
14+ fitting and imputed by spline interpolation. May be multidimensional; see :code:`axis`.
1515 :param float or array[float] dt_or_t: This function supports variable step size. This parameter is either the constant
1616 :math:`\\ Delta t` if given as a single float, or data locations if given as an array of same length as :code:`x`.
1717 :param list params: (**deprecated**, prefer :code:`degree`, :code:`cutoff_freq`, and :code:`num_iterations`)
@@ -60,7 +60,7 @@ def polydiff(x, dt_or_t, params=None, options=None, degree=None, window_size=Non
6060 """Fit polynomials to the data, and differentiate the polynomials.
6161
6262 :param np.array[float] x: data to differentiate. May contain NaN values (missing data); NaNs are excluded from
63- fitting and imputed by polynomial interpolation.
63+ fitting and imputed by polynomial interpolation. May be multidimensional; see :code:`axis`.
6464 :param float or array[float] dt_or_t: This function supports variable step size. This parameter is either the constant
6565 :math:`\\ Delta t` if given as a single float, or data locations if given as an array of same length as :code:`x`.
6666 :param list[int] params: (**deprecated**, prefer :code:`degree` and :code:`window_size`)
@@ -123,7 +123,7 @@ def savgoldiff(x, dt, params=None, options=None, degree=None, window_size=None,
123123 scipy.signal.savgol_filter. The Savitzky-Golay is very similar to the sliding polynomial fit,
124124 but slightly noisier and much faster.
125125
126- :param np.array[float] x: data to differentiate
126+ :param np.array[float] x: data to differentiate. May be multidimensional; see :code:`axis`.
127127 :param float dt: step size
128128 :param list params: (**deprecated**, prefer :code:`degree`, :code:`window_size`, and :code:`smoothing_win`)
129129 :param dict options: (**deprecated**)
0 commit comments