在 c++ 中实现离散马尔可夫链模拟带图形界面
我只是想知道是否有人有任何支持马尔可夫建模和图形表示的库的指针,对于一个项目,我必须模拟传输模型并能够为其开发一个接口。我对 C++ 比较陌生。
I just wanted to know if any one had any pointers for a library or libraries that support Markov modelling and graphical graph representation, as for a project i must simulate a transport model and be able to develop an interface for it too. I am relatively new to c++.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 Boost Graph将简化您所有的图表工作。我不确定是否存在马尔可夫链算法(我也在寻找一个),但是一旦有了图,它应该很容易编写——也许是并发蒙特卡罗方法?
Numerical Recipes 有许多 C 和 C 语言的算法和代码C++。
graphviz 工具是绘制图表所需的全部工具。
Have a look at Boost Graph as it will simplify all your graph work. I am unsure if there is a Markov Chain algiorithm (I am looking for one too) but it should be easy to write once you have the graph -- a concurrent monte carlo approach maybe?
Numerical Recipes has many algorithm and code in both C and C++.
The graphviz tools are all you need to draw graphs.