How do I convert my .m file into a .exe file?

287 views (last 30 days)
Cordelle
Cordelle on 6 Aug 2013
Commented: Walter Roberson on 27 Sep 2023
I do NOT have license compiler.
I have some .m file i need some one to test on there computer and i am not sure if they have matlab so i would like to make the .m file into a .exe file.
  3 Comments
Steven Lord
Steven Lord on 27 Sep 2023
Rather than emailing posters directly, please post here what you've tried and why the solutions provided in this Answers post don't meet your needs. That way everyone can contribute if they have suggestions.
Have you tried any or all of the three solutions @Shashank Prasanna suggested: MATLAB Coder, MATLAB Compiler, and the MATLAB Engine API? If so what requirements of your application did they not satisfy?
If you were trying to provide your code to users who didn't have MATLAB installed so they could run it, have you tried MATLAB Online as I suggested? If so what requirements of your use case did it not satisfy?
Walter Roberson
Walter Roberson on 27 Sep 2023
I have seen people express the sentiment that as far as they are concerned, they will not consider this problem "solved well" until Mathworks start paying people to use MATLAB Compiler (that even if the software were free, that they consider Mathworks to have more or less stolen from people by asking that the software be paid for.)

Sign in to comment.

Answers (3)

Shashank Prasanna
Shashank Prasanna on 6 Aug 2013
Your options are limited to the following and each have their own limitations:
1) MATLAB Compiler which will let you deploy your program as a stand alone executable that can be shared with anyone.
2) MATLAB Code which supports a subset of function for C code generation that can then be complied into an Exe
3) The Engine API which will let you call MATLAB function from within a C program executable.

per isakson
per isakson on 6 Aug 2013
  3 Comments
Cordelle
Cordelle on 6 Aug 2013
I dont have a license compiler, is there away to make the file into a .exe file another way
per isakson
per isakson on 6 Aug 2013
Edited: per isakson on 6 Aug 2013
AFAIK: There is no free way to make a stand-alone, which runs without Matlab.
Your m-file might run on Octave, which is free.

Sign in to comment.


Steven Lord
Steven Lord on 26 Sep 2023
Another alternative, one that didn't exist when this question was originally asked ten years ago, is to have your users use MATLAB Online to run your code.

Categories

Find more on C Shared Library Integration 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!