End Google Ads 201810 - BS.net 01 -->
How to convert Matlab .m files to .exe files
This done by the following command
كود:
>>mcc
also used to convert Matlab .m to C/C++ files.
The advantages of this command is to exploit the extraordinary capabilities of the Matlab in programming to deal with many applications outside the program.
Also used to generate these files
Visual Basic
Microsoft Excel
Generate a Function Library
Generate C Code
Generate C Code
Create Singleton MCR
License File
building .NET components
The general form of this command is
كود:
>>mcc [-options] mfile1 [mfile2 ... mfileN]
The option is now in our case is -m which used to generate .exe files
for example try to execute this for sinx.m
كود:
>>mcc -m sinx.m
we will find the file sinx.exe in the current directory


-----------------------------