vault backup: 2023-04-14 10:25:25

This commit is contained in:
2023-04-14 10:25:25 +02:00
parent 1a05c47564
commit d92c3be78b
41 changed files with 100715 additions and 208 deletions

View File

@@ -0,0 +1,26 @@
![[6. Układy Sekwencyjne 2023-03-29 08.31.04.excalidraw]]
Automaty Moore'a i Mealy'ego
```dot
digraph{
layout=circo
splines=true
1 [label="1/1"]
2 [label="2/1"]
3 [label="3/0"]
4 [label="4/0"]
1->1 [label="ab=11"]
1->2 [label="ab=10"]
2->2 [label="10"]
2->3 [label="00"]
3->3 [label="00"]
3->4 [label="10"]
4->4 [label="10"]
4->1 [label="11"]
}
```
|||||
![[6. Układy Sekwencyjne 2023-03-29 08.48.57.excalidraw]]