From fb037de9ffe72c5b086c314c033be630fca7c4aa Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Tue, 7 Jan 2025 11:05:42 -0500 Subject: [PATCH] tweak --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 40c146d..a56c5bb 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ julia> xx = 0:0.1:10; julia> maximum(@. abs(c(xx) - f(xx))) 2.6336643132285342e-5 ``` -and we see that the interpolant `c` matches `f` to about five decimal digits. +and we see that the degree-10 interpolant `c` matches `f` to about five decimal digits. The function `chebgradient` returns both the interpolant and its derivative, e.g. at `x = 1.234`, and we can compare it to the exact values ```jl