https://github.com/yeeking/markovmodelcpp
Implementation of a multi-order markov model in clean std C++
https://github.com/yeeking/markovmodelcpp
Last synced: 8 months ago
JSON representation
Implementation of a multi-order markov model in clean std C++
- Host: GitHub
- URL: https://github.com/yeeking/markovmodelcpp
- Owner: yeeking
- License: mit
- Created: 2021-07-06T12:37:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-30T15:39:08.000Z (over 2 years ago)
- Last Synced: 2023-04-12T04:48:28.474Z (over 2 years ago)
- Language: C++
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MarkovModelCPP
Implementation of a markov model in C++.
Useful for musical applications and such, in case you don't like
neural networks :)
Check out the MarkovTests.cpp file:
```
g++ MarkovTest.cpp MarkovChain.cpp MarkovManager.cpp -o markovtest
./markovtest
```
You can interact with the markovmanager for a simple high level interface,
or with the markovchain directly.
MIT License.