Hello,
i own the Matlab Compiler aswell as the Simulink Compiler Toolbox for the Standalone application.
I tried to create a Standalone-exe from an app.Designer file which includes a call to a Simulink File :
simulation='Simulink-model.slx';
parameter={...};
for i = 1:length(parameter)
app.simin=app.simin.setVariable(parameter{i,1},parameter{i,2},"Workspace",app.simulation);
end
app.simin=Simulink.SimulationInput(app.simulation);
app.simout=sim(app.simin);
The execution with the app.Designer works and calls the Simulink Model as intendend.
Now i want to create a standalone-exe but the Matlab compiler is not recognising the Simulink-Model (i already added the Model to the required files) and outputs an error during compiling:
Could not find any Simulink model file in the static code analysis.
Would be great if smb has a solution for it
thx in advance
stay healthy