Errors in executable file which is created from AppDesigner .

48 vues (au cours des 30 derniers jours)
Kaustubh hike
Kaustubh hike le 1 Sep 2021
Réponse apportée : Stefanie Schwarz le 17 Avr 2024 à 10:22
Hi,
I have created one app which takes input as a path and if you press the button it loads specific .mat file from that path.
This is how app looks like
When I run .exe / standalone app , it gives following error in cmd.
'Error using matlabpath
Modifying the search path is not supported by MATLAB Compiler. Remove functions that modify the search path from your MATLAB code. To make files visible to your deployed application, add the parent folder to your MATLAB session.'
How to get ride of this issue ? or is it not possible in standalone app ?
this is how main part of code look like
  1 commentaire
Matt J
Matt J le 1 Sep 2021
Modifié(e) : Matt J le 1 Sep 2021
Please don't include code in your posts as an embedded image. Post the code in a code well, e.g.,
a=1;
b=2;
c=a+b

Connectez-vous pour commenter.

Réponse acceptée

Gopinath Karuppannan
Gopinath Karuppannan le 1 Sep 2021
Modifié(e) : Gopinath Karuppannan le 1 Sep 2021
Hi
You should not use the 'addpath' command (static) while creating the standalone executable file. Instead you can the get the directry information using uigetdir() as a dynamic. It avoids the error.
  2 commentaires
Kaustubh hike
Kaustubh hike le 1 Sep 2021
Thanks Gopinath .
Then how can I use uigetdir() to change the working dictionary to that path ?
Goal Is : I want to load specific .mat file which is there at that path location
Gopinath Karuppannan
Gopinath Karuppannan le 1 Sep 2021
uigetdir() --> it allows the user to select the working directory and return the path of the folder. So you can save the path in variable.[link:https://in.mathworks.com/help/matlab/ref/uigetdir.html]. Refer the following example:
pathname = uigetdir();
dir(fullfile(pathname,'*.mat'));
Hope it helps.

Connectez-vous pour commenter.

Plus de réponses (2)

Matt J
Matt J le 1 Sep 2021
Remove this line from your code
addpath(direct)
It's not doing anything anyway.

Stefanie Schwarz
Stefanie Schwarz le 17 Avr 2024 à 10:22

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by