JuliaDynamics/DynamicalSystemsBase.jl

Allow indexing datasets with vector{Bool}

Datseris opened this issue · 1 comments

At the moment something as simple and as convenient as

using DynamicalSystems
lor = Systems.lorenz()
tr = trajectory(lor, 100.0, dt = 0.01, Ttr = 50.0)
x, y, z = columns(tr)
behind = tr[y .< 0, :]

does not work, but is quite simple to implement