Skip to content

Commit

Permalink
drop doctests for roundoff issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tobydriscoll committed Jul 2, 2024
1 parent 0db3ae1 commit 162dfae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/aaa.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Adaptively compute a rational interpolant.
- `stats::NamedTuple`: convergence statistics, if keyword `stats=true`
# Examples
```jldoctest
```julia-repl
julia> z = 1im * range(-10, 10, 500);
julia> y = @. exp(z);
Expand Down
2 changes: 1 addition & 1 deletion src/approximate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Adaptively compute a rational interpolant on a curve, path, or region.
See also [`Approximation`](@ref), [`check`](@ref), [`aaa`](@ref).
# Examples
```jldoctest
```julia-repl
julia> f(x) = tanh( 40*(x - 0.15) );
julia> r = approximate(f, unit_interval)
Expand Down
2 changes: 1 addition & 1 deletion src/lawson.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ as the first input argument.
The `nsteps` argument controls the number of Lawson iterations. The default value is 20.
# Examples
```jldoctest
```julia-repl
julia> f(x) = tanh( 40*(x - 0.15) );
julia> r = approximate(f, unit_interval, max_degree=8); # least-squares approximation
Expand Down

0 comments on commit 162dfae

Please sign in to comment.