You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ In addition, be sure that you have version `SimpleDiffEq 0.3.0` or greater (whic
96
96
97
97
# v1.1
98
98
99
-
* All functionality related to `neighborhood`, `reconstruct` and `Dataset` has moved to a new package: [`DelayEmbeddings`](https://github.com/JuliaDynamics/DelayEmbeddings.jl). It is reexported by `DynamicalSystemsBase`, which is now (as the name suggests) the basis package for defining `DynamicalSystem`.
99
+
* All functionality related to `neighborhood`, `reconstruct` and `StateSpaceSet` has moved to a new package: [`DelayEmbeddings`](https://github.com/JuliaDynamics/DelayEmbeddings.jl). It is reexported by `DynamicalSystemsBase`, which is now (as the name suggests) the basis package for defining `DynamicalSystem`.
100
100
101
101
# v1.0
102
102
@@ -115,7 +115,7 @@ In addition, be sure that you have version `SimpleDiffEq 0.3.0` or greater (whic
115
115
## Breaking
116
116
* Dropped support of Julia versions < 0.7
117
117
*`Reconstruction` does not exist anymore. Instead, `reconstruct` is used in it's
118
-
place. The function now also always returns a `Dataset`.
118
+
place. The function now also always returns a `StateSpaceSet`.
119
119
* In the `reconstruct` function, `D` now stands for the number of temporal neighbors
120
120
which is **one less** than the dimensionality of the reconstructed space.
121
121
* This change was done because it is more intuitive and more scalable when considering multiple timeseries or spatio temporal timeseries.
@@ -157,7 +157,7 @@ very happy to say that these changes reduced *tremendously* the source code!
157
157
* Multi-time Reconstruction
158
158
* Multi-dimensional, multi-time Reconstruction
159
159
* Methods for estimating Reconstruction parameters are now here.
160
-
* Reconstruction from Dataset
160
+
* Reconstruction from StateSpaceSet
161
161
## Breaking
162
162
* Corrected name `helies -> heiles`
163
163
* Reconstructions now have field `delay` which is the delay time/times and are
@@ -193,7 +193,7 @@ very happy to say that these changes reduced *tremendously* the source code!
193
193
parameters are passed directly into the function!!!
194
194
195
195
# Non-breaking
196
-
* Improved the algorithm that converts a Dataset to a Matrix. It is now not only
196
+
* Improved the algorithm that converts a StateSpaceSet to a Matrix. It is now not only
197
197
faster, but also more clear!
198
198
199
199
# v0.4.1
@@ -218,15 +218,15 @@ very happy to say that these changes reduced *tremendously* the source code!
218
218
## Non-breaking
219
219
* Bugfix of `eltype` of `Reconstruction`.
220
220
* Added `circlemap` to `Systems`.
221
-
* Bugfix on `Dataset` that incorrect methods were being called due to missing `<:`.
222
-
* Method `Base.getindex(d::AbstractDataset{D,T}, ::Colon, j<:AbstractVector{Int}) ` now exists!
221
+
* Bugfix on `StateSpaceSet` that incorrect methods were being called due to missing `<:`.
222
+
* Method `Base.getindex(d::AbstractStateSpaceSet{D,T}, ::Colon, j<:AbstractVector{Int}) ` now exists!
223
223
* Added function `evolve!`.
224
224
* Clearly state that we do not support matrices in the equations of motion.
225
225
* Bugfixes regarding ODEProblem.
226
226
227
227
# v0.3.2
228
228
## Non-breaking
229
-
* Orders of magnitude speed-up in conversions between `Matrix` and `Dataset`,
229
+
* Orders of magnitude speed-up in conversions between `Matrix` and `StateSpaceSet`,
230
230
because now methods use `transpose` internally and only `reinterpret`.
0 commit comments