| Метод | Суть | Плюсы/Минусы |
|---|---|---|
| Finite Spectrum Assignment (FSA) | Предсказание состояния через интеграл → конечный спектр | Работает для неустойчивых систем, но сложная реализация (распределённый контроллер) |
| Truncated Predictor Feedback | Упрощённый FSA — отбрасывается бесконечномерная часть | Проще реализовать, но менее точный |
| LMI-based design | Формулировка через линейные матричные неравенства | Робастность к неопределённостям, но консервативнее |
| Tense | Positive | Negative | Question | Negative Question |
|---|---|---|---|---|
| Present Simple | Subject + Verb + Object | Subject + Do/Does + Not + Verb + Object | Q + Do/Does + Subject + Verb + Object | Do/Does + Subject + Not + Verb + Object? |
| Present Continuous | Subject + Am/Is/Are + Verb-ing + Object | Subject + Am/Is/Are + Not + Verb-ing +... | Q + Am/Is/Are + Subject + Verb-ing +... | Q + Am/Is/Are + Subject + Not + Verb-ing + Object? |
| Past Simple | Subject + Past Verb + Object | Subject + Did + Not + Verb + Object | Did + Subject + Verb + Object? | Did + Subject + Not + Verb + Objec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "strconv" | |
| "time" | |
| ) | |
| var players []*player |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "time" | |
| ) | |
| type Value interface {} | |
| type CoolKV interface { | |
| Get(key string) Value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "time" | |
| ) | |
| type Value interface {} | |
| type CoolKV interface { | |
| Get(key string) Value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dasad |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| func main() { | |
| n := name{ | |
| err: nil, | |
| } | |
| n.Some1() | |
| n.Some2() | |
| n.Some3() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| . "net" | |
| "sort" | |
| ) | |
| // Mask ipnet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| . "net" | |
| "sort" | |
| ) | |
| // Mask ipnet |
NewerOlder