Matlab compiler shared resources and helper files

6 views (last 30 days)
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?

Accepted Answer

Harsheel
Harsheel on 31 Aug 2015
Edited: Harsheel on 31 Aug 2015
  1. You need to add folder X in the "Files required for your application to run" section below the "Application Information" GUI. See attached image.
  2. Before running deploytool, etc, add paths to Y and Z to matlab path:
addpath('C:\Documents\whatever\Y')
addpath('C:\Documents\whatever2\Z')
  5 Comments
Image Analyst
Image Analyst on 1 Sep 2015
Edited: Image Analyst on 1 Sep 2015
Harsheel, I see that you work as a developer on the compiler toolbox. When will be be able to deploy files to specific folders, like to c:\users\public\documents? Not being able to do that, and the pain of having deployed files be in secret hidden locations, is a real deal breaker for me as far as using deploytool to create a complete installation package. (I don't blame you if you don't answer since it seems the Mathworks never tips their hand on upcoming features.) Sometimes I need users to be able to find and edit some files manually and we can't do that if the file is hidden in some strange folder or in a subfolder of Program Files.
P.S. I'll be at the Mathworks the week of Sept 22-24 if you want to talk in person.
Diede
Diede on 1 Sep 2015
Ok, I checked: the .m files in the Y and Z folders are needed for the files in the X folder.

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 31 Aug 2015
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 Comment
Diede
Diede on 31 Aug 2015
I don't know what you exactly mean. Some extra information: the standalone must not run just as standalone, but the standalone is used by some software (I have to upload the standalone in the software)

Sign in to comment.

Categories

Find more on MATLAB Compiler in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!