Custom Matlab Runtime

版本 1.0.0 (2.7 KB) 作者: Eric Delgado
Creation of a customized runtime environment.
12.0 次下载
更新时间 2024/4/2

查看许可证

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 (2024). Custom Matlab Runtime (https://www.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