From 50c55e571d350f4c0bcdef6dc320d5216151baab Mon Sep 17 00:00:00 2001 From: Bart de Koning Date: Fri, 12 Jul 2024 21:43:25 +0200 Subject: [PATCH] typo fix --- src/interpolation_caches.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpolation_caches.jl b/src/interpolation_caches.jl index 403d0fb2..e2e544e5 100644 --- a/src/interpolation_caches.jl +++ b/src/interpolation_caches.jl @@ -203,7 +203,7 @@ function AkimaInterpolation(u, t; extrapolate = false, safetycopy = true) end """ - ConstantInterpolation(u, t; dir = :left, extrapolate = falseƧ safetycopy = true) + ConstantInterpolation(u, t; dir = :left, extrapolate = false, safetycopy = true) It is the method of interpolating using a constant polynomial. For any point, two adjacent data points are found on either side (left and right). The value at that point depends on `dir`. If it is `:left`, then the value at the left point is chosen and if it is `:right`, the value at the right point is chosen.