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
I have again the request to improve the documentation for some functions. In particular, it would be very helpful to have examples of several use cases in the documentation string.
For example, when calculating the recurrence matrix from a given 2-column vector (w/o embedding), it would be first necessary to create a DataSet type variable using tr = Dataset(x);. What about including such example:
x = rand(100,1)
tr = Dataset(x);
R = RecurrenceMatrix(tr, 0.1, fixedrate=true)
and similar for embedding
x = sin.(0:.01:12)
tr = embed(x, 2, 177);
R = RecurrenceMatrix(tr, 0.1, fixedrate=true)
Hi,
I have again the request to improve the documentation for some functions. In particular, it would be very helpful to have examples of several use cases in the documentation string.
For example, when calculating the recurrence matrix from a given 2-column vector (w/o embedding), it would be first necessary to create a
DataSet
type variable usingtr = Dataset(x);
. What about including such example:and similar for embedding
Thanks!
Norbert
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: