ueliwechsler

Results 11 issues of ueliwechsler

I came across some peculiar behaviour using `dlyap` and `dlqr`. To my knowledge, the result from `dlyap` should always return a symmetric matrix, however, when running the code below. The...

Sorry, this may be a stupid question. But how can I build the binary of `cddlib` on Windows? I couldn't figure it out so far. Any pointers are appreciated.

wishlist

I stumbled upon this behavior when adding TimeZones functionality to an existing programme. An reduced it to a minimal example. ``` using Dates DateTime("2018-11-02T00:00:00Z", DateFormat("yyyy-mm-ddTHH:MM:SSZ")) using TimeZones DateTime("2018-11-02T00:00:00Z", DateFormat("yyyy-mm-ddTHH:MM:SSZ")) ```...

Indicators.jl is great, but unfortunately is it inconvenient to use, as the dependency Temporal.jl is not supporting HTTP > 1. Is Indicators.jl and Temporal.jl still maintained? In case you need...

Hi, This package looks really cool, was checking out this link http://nbviewer.jupyter.org/github/yeesian/LeafletExamples.jl/blob/master/notebook/leaflet-providers.ipynb Do you intend to update it also to Julia 1.0?

It would be nice to have an `Examples` or a "How to use?" section to the documentation to showcase the features. I can give it a go, once the `@system`...

documentation

I could be a useful feature to have a `linearize` method for black-box systems which does compute the linearization at a certain point `(x,u,w)` for an arbitrary function `f(x,u,w)`. Using...

As mentioned in this comment [here]( https://github.com/JuliaReach/MathematicalSystems.jl/pull/122#issuecomment-578580717), using dispatch on the system type would increase the performance and the extendability of the `discretize` method.

enhancement

https://github.com/JuliaReach/MathematicalSystems.jl/pull/122#issuecomment-570776436 The current implementation #122 of the exact discretization of an affine system does throw an error if the state matrix is singular. Here is an algorithm for this special...

I was struggle a bit with the `Impute.replace` functionality, as at first I did not realize that replacing `0` is not the same as replacing `0.0`. See the following minimal...