Matlab Coder: codegen command line vs gui. 100x slower. why?

1 visualización (últimos 30 días)
Mat Fan
Mat Fan el 18 de Oct. de 2017
Comentada: Chris Volpe el 7 de Ag. de 2023
Hello,
I am trying to figure out how to use go to command line and avoid the gui to generate a library (config:lib).
To do so through the gui, it takes a couple seconds.
To do so through command line: codegen('-config:lib', 'myfunction') takes several minutes.
Could anyone help me figure out the command line command used by the GUI that makes it so much faster?
thank you

Respuestas (1)

Darshan Ramakant Bhat
Darshan Ramakant Bhat el 27 de Sept. de 2019
MATLAB Compiler and MATLAB Coder are two separate products having different objectives.
As you have guessed correctly, MATLAB Compiler uses MATLAB Runtime and it is like executing the packaged code in MATLAB. There may not be significant runtime performance improvements.
However, MATLAB Coder generates C/C++ code from MATLAB code. This generated code can be used to build .exe or MEX files. Using MEX you can get significant runtime improvements since the execution happens with C/C++ code. You can refer to this example for more detail
  1 comentario
Chris Volpe
Chris Volpe el 7 de Ag. de 2023
It seems to me that the staff member who answered this question didn't understand the question. @Mat Fan did not ask about the Matlab compiler. This is strictly about Coder. He/She is saying that the Matlab Coder GUI, which is a front-end to the codegen command line tool, is much faster than using the codegen command line tool directly, which is very counter-intuitive.

Iniciar sesión para comentar.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by