András Rusu

Results 8 issues of András Rusu

This is an attempt to fix issue [184](https://github.com/JuliaDynamics/DynamicalSystems.jl/issues/184). I've added error checking: `lyapunov` and `lyapunovspectrum` now return NaN values immediately in the case of instability. Note that this version only...

Let's say I'm interested in getting the transfer matrix and the invariant measure in case of a time series. ```julia using DynamicalSystems henon_rule(x, p, n) = SVector{2}(1.0 - p[1]*x[1]^2 +...

Right now, construction of a `ParallelDynamicalSystem` is constrained to these types only: ```julia methods(ParallelDynamicalSystem) # 2 methods for type constructor: [1] ParallelDynamicalSystem(ds::CoreDynamicalSystem, states) @ ~/.julia/packages/DynamicalSystemsBase/Dx8Dp/src/derived_systems/parallel_systems.jl:47 [2] ParallelDynamicalSystem(ds::DiscreteTimeDynamicalSystem, states) @ ~/.julia/packages/DynamicalSystemsBase/Dx8Dp/src/derived_systems/parallel_systems.jl:160...

enhancement

I can save my metagraph with `savegraph` but cannot load it with `loadgraph`: ```julia using Graphs,MetaGraphsNext complicated = MetaGraph(DiGraph(), VertexData = Dict{Symbol, Int}, EdgeData = Dict{Symbol, Int}, graph_data = (tagged...

bug
help wanted

Initial illustrative PR (draft): * replace visitors transition counting with a simple loop over the symbolic trajectory in `transferoperator` * remove visitors from `TransferOperatorApproximationRectangular` * remove overwriting L, use N...

We were looking into reducing the overlap between our package [StateTransitionNetworks.jl](https://github.com/rusandris/StateTransitionNetworks.jl) and ComplexityMeasures. Since the transition matrix or transfer (Perron-Frobenius) operator plays a central role in our package, we also...

Right now the transfer operator works only on an `AbstractBinning` outcome space. It would be nice to have a more general notion of the transfer operator so that one could...

In non-autonomous systems with parameter drift, long time averages are less useful to assess chaoticity. There are several different ways to address this, one is related to the ensemble approach....

enhancement