Custom Matlab Runtime

Creation of a customized runtime environment.
23 Downloads
Updated 2 Apr 2024

View License

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 Linux

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0