User`s guide

mcc
7-47
Make a C translation and a Simulink S-function for myfun.m (using
dynamically sized inputs and outputs).
mcc -S myfun
Make a C translation and a Simulink S-function for myfun.m (explicitly calling
for one input and two outputs).
mcc -S -u 1 -y 2 myfun
Make a C translation and stand-alone executable for myfun.m.Lookfor
myfun.m in the /files/source directory, and put the resulting C files and
executable in the
/files/target directory.
mcc -m -I /files/source -d /files/target myfun
Make a C translation and a MEX-file for myfun.m. Also translate and include
all M-functions called directly or indirectly by
myfun.m. Incorporate the full
text of the original M-files into their corresponding C f iles as C comments.
mcc -x -h -A annotation:all myfun
Make a generic C translation of myfun.m.
mcc -t -L C myfun
Make a generic C++ translati on of myfun.m.
mcc -t -L Cpp myfun
Make a C MEX wrapper file from myfun1.m and myfun2.m.
mcc -W mex -L C myfun1 myfun2
Make a C translation and a stand-alone executable from myfun1.m and
myfun2.m (using one mcc call).
mcc -m myfun1 myfun2