Reputation: 738
Is there's away to convert the built-in functions that doesn't have a .m file to C++ I'm read in some paper that neither the Matlab compiler nor the Matlab coder could convert it so I'm wondering those seem to be the most basic functions is there's another way to convert it or perhaps a C++ library with its equivalent
Upvotes: 1
Views: 1279
Reputation: 124563
For deployment solutions, MathWorks publishes lists of supported toolboxes and functions by each product: MATLAB Coder and MATLAB Compiler
Upvotes: 1
Reputation: 2710
Check the Boost C++ Library (which also contains ode solvers and many other things) or LAPACK (for linear algebra operations).
Upvotes: 1