Embed MATLAB code in C ++?

I have specific code written in Matlab. I wanted to get similar results using C ++ code. I wanted to know if there is a C ++ library for matrix manipulations? My current Matlab code consists of matrix multiplications, inverse and complement.

+6
c ++ matrix matlab
source share
3 answers

There are many linear algebra libraries for C ++. Here is another one that is not mentioned in other links yet:

http://www.alglib.net/

+3
source share

I used Newmat in a similar situation.

+2
source share

Not sure if this will help you, or if your company / university has licenses for it, but matlabcoder can export your matlab code in C ++ without any extra work. http://www.mathworks.com/products/matlab-coder/

+1
source share

All Articles