How to Increase MATLAB Running Speed ?

조회 수: 6 (최근 30일)
Selva Karna
Selva Karna 2018년 6월 21일
답변: Denis Gurchenkov 2018년 7월 25일
How to Increase MATLAB Running Speed ? i Run a Code in MATLAB Editor its take 2seconds, but its convert to JAR Deploy , i get in result after 48seconds , how can reduce time delay ? can share any Idea's?

답변 (1개)

Denis Gurchenkov
Denis Gurchenkov 2018년 7월 25일
Most likely you used MATLAB Compiler to create a deployment executable, and so when that executable is run, first thing it does is starting MATLAB engine (46 seconds in your case, likely) and then running your code (2 seconds). When you ran your code in the editor directly, MATLAB is already started, so it only took 2 seconds.
As you added "MATLAB Coder" to the list of products for this question, you can try using MATLAB Coder (codegen) to generate a native executable for your OS, and deploy that executable. It won't require MATLAB at all so it will likely run in 2 seconds or less. The getting started guides are here: https://www.mathworks.com/campaigns/products/offer/download_matlab-coder.html
A more heavyweight solution is to set up a MATLAB production server, so that MATLAB is always loaded up in memory, and thus incoming work requests (such as "run this code") would take no more time than running directly in the editor.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB Compiler SDK에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by