Custom Matlab Runtime
Versión 1.0.0 (2,7 KB) por
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]));
Citar como
Eric Delgado (2025). Custom Matlab Runtime (https://www.mathworks.com/matlabcentral/fileexchange/162511-custom-matlab-runtime), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2023a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS LinuxEtiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.0 |