How can I convert a matlab code to C?

1 view (last 30 days)
I want to convert this to C code
function [c]= add(a,b)
c=a+b
How is the compiler used to convert this to C, i am new to this. I do not have a Matlab coder.
  1 Comment
Shashank Prasanna
Shashank Prasanna on 30 Jan 2013
If you don't have MATLAB Coder, you will have to write it yourself. There is no other way to automatically generate C code out of MATLAB code.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 30 Jan 2013
MATLAB Coder is the only product for converting MATLAB to C.
MATLAB Compiler (a different product) does not convert to C: it converts to internal data structures that are interpreted by a MATLAB engine.
  1 Comment
Ijeoma Madu
Ijeoma Madu on 31 Jan 2013
Thanks. I guess i would get a coder. But how is the compiler used, i would like to see its benefits. I have never used it before

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB Coder in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!