用 C++ 实现 matlab 代码?
我有一段用 Matlab 编写的代码。我想使用 C++ 代码获得类似的结果。我想知道是否存在用于矩阵操作的 C++ 库?我当前的Matlab 代码由矩阵乘法、逆矩阵和补矩阵组成。
I have a certain code written in Matlab. I wanted to obtain similar results using a c++ code. I wanted to know whether a c++ library exists for matrix manipulations? My current Matlab code consists of matrix multiplications,inverse and complements.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
C++ 有数十个线性代数库。这是迄今为止其他链接中未提及的另一个:
http://www.alglib.net/
There are dozens of linear algebra libraries for C++. Here is another one not mentioned in the other links so far:
http://www.alglib.net/
我在类似的情况下使用过 Newmat 。
I have used Newmat in a similar situation.
不确定这是否对您有帮助,或者您的公司/大学拥有它的许可证,但 matlabcoder 可以将您的 matlab 代码导出到 C++,而无需太多额外的工作。
http://www.mathworks.com/products/matlab-coder/
Not sure if this would help you, or your company/university have licenses for it but matlabcoder can export your matlab code to c++ without much extra work.
http://www.mathworks.com/products/matlab-coder/