App Designer standalone Test app not executing

12 views (last 30 days)
This is the error on 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.
Error in path (line 109)
Error in addpath (line 86)
Error in startup (line 2)
MATLAB:mpath:PathAlterationNotSupported
The test app was created after having the same error with the main application, and contains no code except a button and image controls.
MCR v97 is installed.
Can you tell of any solution?

Accepted Answer

Bereketab Gulai
Bereketab Gulai on 3 Oct 2019
Found out that Matlab may have including the Startup file in the current directory that was being used for MATLAB. At first, it seemed like MATLAB message was refering to a separate startup file for the standalone app. However, when finally used MATLAB R2018b which provided more clearer error:
  • Undefined variable "at" or class "at.mep.Start.start".Error in startup (line 10)Undefined variable "at" or class "at.mep.Start.start".
This line was only in the MATLAB IDE, why should MATLAB include this startup file or rather not make it an option.
  • The solution was to simply remove the startup file.
  1 Comment
Jon
Jon on 24 Apr 2020
For anyone else who stumbles on this answer, I had the same issue with a compiled Matlab program. I fixed my startup.m and continued having the same error, I needed to recompile the executable to include the corrected version of startup.m.

Sign in to comment.

More Answers (1)

Stefanie Schwarz
Stefanie Schwarz on 17 Apr 2024 at 10:25

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!