Skip to content

Commit 82ab464

Browse files
committed
correct reference to statespaceset
1 parent 6a4c7cb commit 82ab464

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "RecurrenceAnalysis"
22
uuid = "639c3291-70d9-5ea2-8c5b-839eba1ee399"
33
repo = "https://github.com/JuliaDynamics/RecurrenceAnalysis.jl.git"
4-
version = "2.0.1"
4+
version = "2.0.2"
55

66
[deps]
77
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Downloads.download(
1616
)
1717
include("build_docs_with_style.jl")
1818

19-
build_docs_with_style(pages, RecurrenceAnalysis)
19+
build_docs_with_style(pages, RecurrenceAnalysis, StateSpaceSets)

docs/src/rplots.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,3 +173,8 @@ The distance function used in [`RecurrenceMatrix`](@ref) and co. can be specifie
173173
```@docs
174174
distancematrix
175175
```
176+
177+
## `StateSpaceSet` reference
178+
```@docs
179+
StateSpaceSet
180+
```

src/matrices/recurrence_matrix_types.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# AbstractRecurrenceMatrix type hierarchy
33
################################################################################
44
# TODO: `RT` is `AbstractRecurrenceType`, but due to deprecations, it is allowed
5+
# to be anything at the moment
56
abstract type AbstractRecurrenceMatrix{RT} <: AbstractMatrix{Bool} end
67
const 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`
9192
and with recurrence threshold specification `ε`.
93+
`x` is either a [`StateSpaceSet`](@ref) for multivariate data
94+
or an `AbstractVector{<:Real}` for timeseries.
9295
9396
If `ε::Real` is given, a [`RecurrenceThreshold`](@ref) is used to specify recurrences.
9497
Otherwise, any subtype of [`AbstractRecurrenceType`](@ref) may be given as `ε` instead.

0 commit comments

Comments
 (0)