|
From: Max C. <max...@jk...> - 2020-03-03 16:07:37
|
Dear EIDORS Team
I am using EIDORS (v 3.9.1) in
Matlab-Appdesigner (R2019a) and would like to create a .exe using the
MATLAB Application Compiler Toolbox.
The simplest way of
using EIDORS in the Appdesigner is to create a blank app and just
start EIDORS in the startupFcn:
% Code that executes after
component creation
function
startupFcn(app)
run(which(fullfile('eidors-v3.9.1','eidors','startup.m')));
end
Without
deploying, this code is working. However, if I create an .exe using
MATLABs Application Compiler (Appdesigner → Share → Standalone
Desktop App), I receive the following error:
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.
My question
would be, if there are any functions in EIDORS that do not comply
with the suggested path management for the MATLAB Compiler (see
https://blogs.mathworks.com/loren/2008/08/11/path-management-in-deployed-applications).
I would be very grateful for any suggestions from your side.
Thank
you for your help!
Best regards,
Max Cichocki
|