From 4ad3a7bfe26d7d532c8185c4eb5c15a3fe7c635f Mon Sep 17 00:00:00 2001 From: Mark Kittisopikul Date: Tue, 30 Jan 2024 09:33:26 -0500 Subject: [PATCH] Fix documentation for extrapolate --- docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index 75e523a7..fac1d976 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -63,7 +63,7 @@ composition of `interpolate`, `scale`, and `extrapolate`. You may not need all of the the scaling and extrapolation features. ```julia -interp_linear = extrapolate(scale(interpolate(A, BSpline(Linear())), xs)) +interp_linear = extrapolate(scale(interpolate(A, BSpline(Linear())), xs), Line()) ``` If we know we do not need the extrapolation portion, we can use the following.