From a9c3624f0bc538e0b25bd54e6dea3f63691e9607 Mon Sep 17 00:00:00 2001 From: Sathvik Bhagavan Date: Mon, 15 Jul 2024 13:02:05 +0000 Subject: [PATCH] docs: small cleanup of pchip docstrings --- src/interpolation_caches.jl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/interpolation_caches.jl b/src/interpolation_caches.jl index 4ebd70cd..cb120a4a 100644 --- a/src/interpolation_caches.jl +++ b/src/interpolation_caches.jl @@ -744,10 +744,9 @@ end """ PCHIPInterpolation(u, t; extrapolate = false, safetycopy = true) -It is a PCHIP Interpolation, which is a type of `CubicHermiteSpline` where -the derivative values `du` are derived from the input data in such a way that -the interpolation never overshoots the data. See also [here](https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/moler/interp.pdf), -section 3.4. +It is a PCHIP Interpolation, which is a type of [`CubicHermiteSpline`](@ref) where the derivative values `du` are derived from the input data +in such a way that the interpolation never overshoots the data. See [here](https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/moler/interp.pdf), +section 3.4 for more details. ## Arguments