File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 11name = " RecurrenceAnalysis"
22uuid = " 639c3291-70d9-5ea2-8c5b-839eba1ee399"
33repo = " https://github.com/JuliaDynamics/RecurrenceAnalysis.jl.git"
4- version = " 2.0.1 "
4+ version = " 2.0.2 "
55
66[deps ]
77DelimitedFiles = " 8bb1440f-4735-579b-a4ab-409b98df4dab"
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ Downloads.download(
1616)
1717include (" build_docs_with_style.jl" )
1818
19- build_docs_with_style (pages, RecurrenceAnalysis)
19+ build_docs_with_style (pages, RecurrenceAnalysis, StateSpaceSets )
Original file line number Diff line number Diff line change @@ -173,3 +173,8 @@ The distance function used in [`RecurrenceMatrix`](@ref) and co. can be specifie
173173``` @docs
174174distancematrix
175175```
176+
177+ ## ` StateSpaceSet ` reference
178+ ``` @docs
179+ StateSpaceSet
180+ ```
Original file line number Diff line number Diff line change 22# AbstractRecurrenceMatrix type hierarchy
33# ###############################################################################
44# TODO : `RT` is `AbstractRecurrenceType`, but due to deprecations, it is allowed
5+ # to be anything at the moment
56abstract type AbstractRecurrenceMatrix{RT} <: AbstractMatrix{Bool} end
67const ARM = AbstractRecurrenceMatrix
78
@@ -87,8 +88,10 @@ SparseArrays.SparseMatrixCSC(R::ARM) = SparseMatrixCSC(R.data)
8788"""
8889 RecurrenceMatrix(x, ε; metric = Euclidean(), parallel::Bool)
8990
90- Create a recurrence matrix from trajectory `x` (either a `Dataset` or a `Vector`)
91+ Create a recurrence matrix from trajectory `x`
9192and with recurrence threshold specification `ε`.
93+ `x` is either a [`StateSpaceSet`](@ref) for multivariate data
94+ or an `AbstractVector{<:Real}` for timeseries.
9295
9396If `ε::Real` is given, a [`RecurrenceThreshold`](@ref) is used to specify recurrences.
9497Otherwise, any subtype of [`AbstractRecurrenceType`](@ref) may be given as `ε` instead.
You can’t perform that action at this time.
0 commit comments