RobustAndOptimalControl.jl icon indicating copy to clipboard operation
RobustAndOptimalControl.jl copied to clipboard

Robust and optimal design and analysis of linear control systems

Results 7 RobustAndOptimalControl.jl issues
Sort by recently updated
recently updated
newest added

So I was working on my first larger block diagram, and trying to get everything in place. First I was meeting error messages giving me the name of an input/output...

Takes [the demo code snippet from here](https://github.com/mortenpi/documenter-extension-example/tree/master) and implements it as a local extension module that adds support for simple collapsed at-example blocks to docs. ![image](https://user-images.githubusercontent.com/147757/232691500-ac7c890e-6901-4513-8452-02acb9bf943d.png) @baggepinnen: I would suggest...

```julia using RobustAndOptimalControl W = makeweight(0.1, 10, 2) P0 = tf(1, [1, 2, 1]) Pu = P0 * (1 + W*δc()) feedback(Pu) ```

For an uncertain system `Gu` represented by multiple models (e.g., `Particles`), one could design a controller that is guaranteed to be stabilizing for all plants in `Gu` by first finding...

Provide keyword args `scaleY, scaleU` that rescales the model such that input and output ranges are roughly `-1:1` before reducing the model order. When the model is reduced, the inverse...

enhancement

- [x] Go through docs and make sure all places where there is an extra `1.0I`, `ss()` etc. are made smoother. - [ ] `ss` can not be built from...

Among the provided functions there is also the `lqr3` function. Its docstring reads: > Calculate the feedback gain of the discrete LQR cost function augmented with control differences. Could you...