diff --git a/Project.toml b/Project.toml index 4469db8..313301c 100644 --- a/Project.toml +++ b/Project.toml @@ -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" diff --git a/docs/src/rplots.md b/docs/src/rplots.md index 4951c01..3f90f8b 100644 --- a/docs/src/rplots.md +++ b/docs/src/rplots.md @@ -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) ``` @@ -177,4 +182,4 @@ distancematrix ## `StateSpaceSet` reference ```@docs StateSpaceSet -``` \ No newline at end of file +```