Does the MATLAB Compiler speed up the execution time of MATLAB functions?

1 visualización (últimos 30 días)
I would like to speed up functions written in MATLAB code. I would like to know if MATLAB Compiler can improve performance of code.

Respuestas (1)

Sanchali Purandare
Sanchali Purandare el 16 de En. de 2011
MATLAB Compiler 4.0 (R14) encrypts MATLAB code and wraps it in C. As a result, the source code is still interpreted at run-time, and performance of code should be the same whether run in stand-alone mode or in MATLAB. There is one important difference for compiled applications. Every time you start a compiled executable, you pay the penalty essentially of starting MATLAB. You should be aware of this when comparing performance variations. See the information below regarding MATLAB Compiler 3.0:
MATLAB Compiler 3.0 (R13) has the ability to translate MATLAB Code into C/C++ code. This code can then be compiled into a stand-alone application or C-shared library. The main purpose of the MATLAB Compiler is to provide deployment options for customer applications. It is true that in certain cases you may see a substantial speed increase in your applications after compilation. Though there can be instances where execution actually takes longer. We make no claims as to the speed increase of MATLAB code after compilation. Also, certain MATLAB file programming techniques can help execution speed of your MATLAB files.
  1 comentario
Aurelien Queffurust
Aurelien Queffurust el 21 de En. de 2011
You could also directly give the link to the solution : http://www.mathworks.com/support/solutions/en/data/1-1ARNS/

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB Compiler en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by