Matlab compiler shared resources and helper files
Afficher commentaires plus anciens
I have some matlabfiles which must be a standalone. Because I need also other files I have a description to do it: Add folder X to shared resources and helper files (this is the same as the -a option in the command line) Further, the folders Y and Z must be in the Matlab path.
I know I can use matlab compiler. But I saw that shared resources and helper files is for older versions of matlab. Can anyone tell me what I have to do with these folder X (if I use the application matlab compiler) and what they mean with adding folder Y and Z to the matlab path?
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 31 Août 2015
0 votes
You can ship other files, however the deploytool requires that they be subfolders of your application. They can't be just anywhere you want. That's why I don't use deploytool. You can use a third party installation package builder to put your files where you want and they don't have to be on the MATLAB search path. However, when you go to access them, you must use the full path where you expect them to be. If you leave off the folder in your filename when you use something like load() or xlsread(), then it will search only the search path and won't find your special folder. That's why you need to specify the full path name, which, of course, is an excellent idea in any case.
1 commentaire
Diede
le 31 Août 2015
Catégories
En savoir plus sur Standalone Applications dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!