update README

This commit is contained in:
Gaspard Jankowiak 2025-02-10 12:29:43 +01:00
commit 0ecb7c6884

View file

@ -14,7 +14,14 @@ Returns true if `Jf` approximates the derivative/gradient/Jacobian of `f` at poi
effectively ignoring the dependency of `f` on these components. effectively ignoring the dependency of `f` on these components.
## Examples ## Examples
```julia-repl ```julia
julia> f = x -> cos(x); Jf = x -> -sin(x); check(f, Jf, rand()) import TaylorTest
true
f = x -> cos(x)
Jf = x -> -sin(x)
TaylorTest.check(f, Jf, rand())
# [ Info: Approximation order ~ 1.0
# true
``` ```