Skip to content

Commit

Permalink
Update plot.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Oct 17, 2017
1 parent ae676fe commit 5311c27
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/src/basics/plot.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,18 @@ on high dimensional numbers (complex numbers) and other high dimensional plots.
See [the README](https://github.com/JuliaDiffEq/DimensionalPlotRecipes.jl) for
more details on the extra controls that exist.

### Timespan

A plotting timespan can be chosen by the `tspan` argument in `plot`. For example:

```julia
plot(sol,tspan=(0.0,40.0))
```

only plots between `t=0.0` and `t=40.0`. If `denseplot=true` these bounds will be respected
exactly. Otherwise the first point inside and last point inside the interval will be plotted,
i.e. no points outside the interval will be plotted.

### Example

```julia
Expand Down

0 comments on commit 5311c27

Please sign in to comment.