Custom Matlab Runtime
Version 1.0.0 (2.7 KB) by
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]));
Cite As
Eric Delgado (2024). Custom Matlab Runtime (https://www.mathworks.com/matlabcentral/fileexchange/162511-custom-matlab-runtime), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Created with
R2023a
Compatible with any release
Platform Compatibility
Windows macOS LinuxTags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Version | Published | Release Notes | |
---|---|---|---|
1.0.0 |