Skip to content

Commit 935a584

Browse files
authored
fix call to recurrence_matrix with kwargs (#88)
1 parent 61b75ed commit 935a584

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 = "1.1.0"
4+
version = "1.1.1"
55

66
[deps]
77
DelayEmbeddings = "5732040d-69e3-5649-938a-b6b4f237613f"

src/matrices.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Quantification Analysis. Theory and Best Practices*, Springer, pp. 3-43 (2015).
170170
function RecurrenceMatrix(x, ε; metric = DEFAULT_METRIC, kwargs...)
171171
m = getmetric(metric)
172172
s = resolve_scale(x, m, ε; kwargs...)
173-
m = recurrence_matrix(x, m, s; kwargs...)
173+
m = recurrence_matrix(x, m, s)
174174
return RecurrenceMatrix(m)
175175
end
176176

0 commit comments

Comments
 (0)