Custom Matlab Runtime
バージョン 1.0.0 (2.7 KB) 作成者:
Eric Delgado
Creation of a customized runtime environment.
The customMatlabRuntime abstract class was designed to facilitate the creation of a customized runtime environment. It selects only the essential products and toolboxes required by one or a set of MATLAB files.
Syntax of main method:
zipFileFullPath = customMatlabRuntime.CreateZipFile('File', pwd);
zipFileFullPath = customMatlabRuntime.CreateZipFile('File', {'D:\apps\MyFirstApp', 'D:\apps\MySecondApp', 'D:\apps\General\Config.m'});
zipFileFullPath = customMatlabRuntime.CreateZipFile('IDList', [35000, 35002, 35003, 35010, 35108, 35162]);
Or...
fileList1 = customMatlabRuntime.MATLABFileList({'D:\apps\MyFirstApp'});
IDList1 = customMatlabRuntime.GetIDList(fileList1);
fileList2 = customMatlabRuntime.MATLABFileList({'D:\apps\MySecondApp'});
IDList2 = customMatlabRuntime.GetIDList(fileList2);
fileList3 = customMatlabRuntime.MATLABFileList({'D:\apps\General\Config.m'});
IDList4 = customMatlabRuntime.GetIDList(fileList4);
zipFileFullPath = customMatlabRuntime.CreateZipFile('IDList', cell2mat([IDList1, IDList2, IDList3]));
引用
Eric Delgado (2025). Custom Matlab Runtime (https://jp.mathworks.com/matlabcentral/fileexchange/162511-custom-matlab-runtime), MATLAB Central File Exchange. に取得済み.
MATLAB リリースの互換性
作成:
R2023a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linuxタグ
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!| バージョン | 公開済み | リリース ノート | |
|---|---|---|---|
| 1.0.0 |
