Azzera filtri
Azzera filtri

Why my Windows Standalone Application doesn't work out as its original file?

1 visualizzazione (ultimi 30 giorni)
Hello,
I've created an executable file from a .m file using the Deployment Tool, but the generated file doesn't work properly. It doesn't do the same thing as the .m file running directly from Matlab. I just want it to open a Simulink file (.mdl or .slx). Here follows the code:
%%%%%%%%%%%%%%%%%%
global ModelName
[filename, pathname] = uigetfile({'*.slx;*.mdl', 'Modelo (*.mdl, *.slx)'});
[pathstr, name, ext] = fileparts(filename);
modelo = strcat(pathname,filename);
open_system(modelo);
ModelName = name;
set_param(ModelName,'BlockReduction','off');
%%%%%%%%%%%%%%%%%%%%
Why this happens? Does anybody know what I can do?
Thanks!

Risposta accettata

Harsheel
Harsheel il 20 Set 2013
open_system is an unsupported function which cannot be compiled. A list of supported/unsupported functions with various toolboxes can be found here:
open_system is listed here:
  3 Commenti
Vinicius
Vinicius il 24 Set 2013
Actually, I wanted a GUI standalone that communicates with Simulink models. Is it possible with the Simulink Coder?! From what I've read, the Simulink Coder generates code from a Simulink model or Matlab functions. Does the Simulink Coder support a GUI code? My GUI purpose is to open a Simulink model and get data from it through listeners. Could you help me with that?

Accedi per commentare.

Più risposte (1)

Image Analyst
Image Analyst il 18 Set 2013
  3 Commenti
Image Analyst
Image Analyst il 18 Set 2013
Modificato: Image Analyst il 18 Set 2013
So it launches, it just doesn't do what you expect. Well I don't have Simulink (which I just added to the product list tag) so I can't help further.

Accedi per commentare.

Categorie

Scopri di più su Simulink Coder in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by