Skip to content

Commit df5096e

Browse files
committed
fix broken references
1 parent 7973607 commit df5096e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/source/api/ddt.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@
308308
"cell_type": "markdown",
309309
"metadata": {},
310310
"source": [
311-
"The classes {class}`UniformFiniteDifferencer` and {class}`NonuniformFiniteDifferencer` wrap the finite difference methods listed above for use with {mod}`opinf.rom` classes.\n",
311+
"The classes {class}`UniformFiniteDifferencer` and {class}`NonuniformFiniteDifferencer` wrap the finite difference methods listed above for use with {mod}`opinf.roms` classes.\n",
312312
"They also have a [`verify()`](opinf.ddt.UniformFiniteDifferencer.verify) method for checking the estimation scheme against true derivatives for a limited set of test cases."
313313
]
314314
},

src/opinf/ddt/_interpolation.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ class InterpolationDerivativeEstimator(DerivativeEstimatorTemplate):
3636
3737
The following strings are also accepted.
3838
39-
* `"cubic"` (default): use :class:`scipy.interpolate.CubicSpline`.
40-
* `"akima"`: use :class:`scipy.interpolate.Akima`. This is a local
41-
interpolation method and is more resitant to outliers than
42-
:class:`scipy.interpolate.CubicSpline`. However, it is not
43-
recommended if the time points are not uniformly spaced.
39+
* ``"cubic"`` (default): use :class:`scipy.interpolate.CubicSpline`.
40+
* ``"akima"``: use :class:`scipy.interpolate.Akima1DInterpolator`.
41+
This is a local interpolation method and is more resitant to
42+
outliers than :class:`scipy.interpolate.CubicSpline`. However, it is
43+
not recommended if the time points are not uniformly spaced.
4444
new_time_domain : (k',) ndarray or None
4545
If given, evaluate the interpolator at these points to generate new
4646
state snapshots and corresponding time derivatives. If input snapshots

0 commit comments

Comments
 (0)