Skip to content

Commit

Permalink
Update rplots.md (#163)
Browse files Browse the repository at this point in the history
* Update rplots.md

add example with GlobalRecurrenceRate(RR)

* Update docs/src/rplots.md

* Update Project.toml

---------

Co-authored-by: George Datseris <datseris.george@gmail.com>
  • Loading branch information
pucicu and Datseris committed Jun 10, 2024
1 parent 64229ed commit b87b5e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RecurrenceAnalysis"
uuid = "639c3291-70d9-5ea2-8c5b-839eba1ee399"
repo = "https://github.com/JuliaDynamics/RecurrenceAnalysis.jl.git"
version = "2.0.7"
version = "2.0.8"

[deps]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Expand Down
7 changes: 6 additions & 1 deletion docs/src/rplots.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ X, t = trajectory(ro, N*Δt; Δt, Ttr = 10.0)
R = RecurrenceMatrix(X, 5.0)
recurrenceplot(R; ascii = true)
```
Or make a recurrence matrix with fixed (global) recurrence rate of 10%
```@example MAIN
R = RecurrenceMatrix(X, GlobalRecurrenceRate(0.1))
recurrenceplot(R; ascii = true)
```
```@example MAIN
typeof(R)
```
Expand Down Expand Up @@ -177,4 +182,4 @@ distancematrix
## `StateSpaceSet` reference
```@docs
StateSpaceSet
```
```

0 comments on commit b87b5e2

Please sign in to comment.