Skip to content

Commit 8df2e4f

Browse files
committed
Clarify when the last u is ignored
1 parent 3464128 commit 8df2e4f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ A = SmoothedConstantInterpolation(u, t; d_max = 10)
9393
plot!(A)
9494
```
9595

96-
Note that `u[end]` is ignored.
96+
Note that `u[end]` is ignored, except when using extrapolation types `Constant` or `Extension`.
9797

9898
## Quadratic Spline
9999

src/interpolation_caches.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,8 +372,8 @@ end
372372
373373
It is a method for interpolating constantly with forward fill, with smoothing around the
374374
value transitions to make the curve continuously differentiable while the integral never
375-
drifts far from the integral of constant interpolation. `u[end]` is ignored for extrapolation types
376-
`None` (default) and `Periodic`.
375+
drifts far from the integral of constant interpolation. `u[end]` is ignored,
376+
except when using extrapolation types `Constant` or `Extension`.
377377
378378
## Arguments
379379

0 commit comments

Comments
 (0)