Davood
Davood

Reputation: 5645

How to decrease MATLAB Runtime compiler size to make a stand alone application?

I just want to make an exe file in MATLAb to make a stand-alone application, after some research on the internet I found this link on the MATLAB website and download MATLAB Runtime compile and made my application.

It makes me a exe file but the problem is that if you want to run your code on another computer without installing MATLAB Runtime compiler it does not work.

In .Net application we install .Net framework it's OK but in this case MATLAB Runtime compiler has a huge size, it's about 1.7GB and it's little hard for user to download and install it on their computer.

Is there any way to handle it?

Upvotes: 1

Views: 454

Answers (1)

user1097111
user1097111

Reputation: 662

You can use the Matlab Coder to generate C code which you can then compile. It will not do graphics though, but it will do a lot (including some advanced signal processing). There is no way around installing the Matlab Runtime Compiler if you want graphics, although if your application runs on antiquated Matlab 5.3 (about 20 years old), this version of Matlab used to create standalone applications (with graphics) that did not require the runtime compiler.

Upvotes: 3

Related Questions