26 lines
418 B
Markdown
26 lines
418 B
Markdown
|
|
![[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]] |