Skip to content

Commit

Permalink
Merge pull request #702 from oxinabox/patch-1
Browse files Browse the repository at this point in the history
update docs to state most derivatives have been implemented
  • Loading branch information
ChrisRackauckas authored Oct 26, 2023
2 parents 7be7fe4 + 3b88026 commit 96a0929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/basics/solution.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Note that the interpolating function allows for `t` to be a vector and uses this
sol(t, deriv = Val{0}; idxs = nothing, continuity = :left)
```

The optional argument `deriv` lets you choose the number `n` derivative to solve the interpolation for, defaulting with `n=0`. Note that most of the derivatives have not yet been implemented (though it's not hard, it just has to be done manually for each algorithm. Open an issue if there's a specific one you need). `continuity` describes whether to satisfy left or right continuity when a discontinuity is saved. The default is `:left`, i.e. grab the value before the callback's change, but can be changed to `:right`. `idxs` allows you to choose the indices the interpolation should solve for. For example,
The optional argument `deriv` lets you choose the number `n` derivative to solve the interpolation for, defaulting with `n=0`. (Note the implementation of this is per solver, most of the derivatives have implemented, but you might find some that are not. Open an issue if there's a specific one needed that you find is missing). `continuity` describes whether to satisfy left or right continuity when a discontinuity is saved. The default is `:left`, i.e. grab the value before the callback's change, but can be changed to `:right`. `idxs` allows you to choose the indices the interpolation should solve for. For example,

```julia
sol(t, idxs = 1:2:5)
Expand Down

0 comments on commit 96a0929

Please sign in to comment.