-
Notifications
You must be signed in to change notification settings - Fork 0
/
hybrid_automata_software.qmd
28 lines (22 loc) · 1.18 KB
/
hybrid_automata_software.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
title: "Software"
bibliography: ref_hybrid.bib
#csl: ieee-control-systems.csl
format:
html:
html-math-method: katex
code-fold: true
code-summary: "Show the code"
crossref:
fig-prefix: Fig
#engine: julia
---
## Matlab
- pure Simulink: [Relational operators](https://www.mathworks.com/help/simulink/slref/relationaloperator.html), [Logical operators](https://www.mathworks.com/help/simulink/slref/logicaloperator.html), Extra options for the [Integrator](https://www.mathworks.com/help/simulink/slref/integrator.html) block (external reset, external initial conditions, possibly state port).
- pure Matlab: [Event Location](https://www.mathworks.com/help/matlab/math/ode-event-location.html) with ODE solvers.
- Stateflow: [Continuous-time modeling in Stateflow](https://www.mathworks.com/help/stateflow/ug/about-continuous-time-modeling.html)
## Julia
- [HybridSystems.jl](https://github.com/blegat/HybridSystems.jl) – the package essentially just defines some basic data types, currently it is mainly used by some other packages, such as ReachabilityAnalysis.jl.
- [ReachabilityAnalysis.jl](https://github.com/JuliaReach/ReachabilityAnalysis.jl)
## Python
- ...