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

4 ビュー (過去 30 日間)
Mat Fan
Mat Fan 2017 年 10 月 18 日
コメント済み: Chris Volpe 2023 年 8 月 7 日
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

回答 (1 件)

Darshan Ramakant Bhat
Darshan Ramakant Bhat 2019 年 9 月 27 日
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 件のコメント
Chris Volpe
Chris Volpe 2023 年 8 月 7 日
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGenerating Code についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by