Clear Filters
Clear Filters

Matlab Coder and unsupported Built-In functions

1 view (last 30 days)
antonino
antonino on 18 May 2016
Commented: Adam on 18 May 2016
Hello everyone,
Since a few days I am dealing with code generation in Matlab.
Months ago I created a Matlab function. The function makes unfortunately use of not-supported built-in functions like eval, feval, int2str, num2str,etc... when talking about code generation.
I am currently googling for feasible solutions but probably some of you could already suggest me the more effective and efficient way ahead...
I've been using Matlab R2015b and the generated code will be deployed on a Linux machine in which no Matlab installation is available (I was told that however "MATLAB Runtime" is).
Thank you in advance, Nino
  1 Comment
Adam
Adam on 18 May 2016
Matlab runtime shouldn't be needed for Coder because it produces C++ code. Matlab Compiler is what uses the Runtime as it produces executables rather than just raw code. eval (and probably feval too, I can't remember what it does) are bad practice in Matlab programming too so replacing them with a better implementation would be an improvement for the Matlab code itself too.

Sign in to comment.

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!