Effacer les filtres
Effacer les filtres

pass struct of variables to Simulink via gui

3 vues (au cours des 30 derniers jours)
Fabian H.
Fabian H. le 15 Mar 2014
Commenté : Fabian H. le 14 Avr 2014
Hi guys,
i try to send/pass a properties file which i create in a gui to my Simulink model or at least show it in the workspace so Simulink can catch the variables. The problem is when i execute this:
load('test.mat')
open_system('RakeGAIN16QAM.mdl')
set_param('RakeGAIN16QAM','SimulationCommand','start')
in my command window its fine if i execute this in my callback of the gui i get a lot of errors
function pbuttonStart_Callback(hObject, eventdata, handles)
load('test.mat')
open_system('RakeGAIN16QAM.mdl');
set_param('RakeGAIN16QAM','SimulationCommand','start');
Anybody got an idea, its really frustrating to me, it feels like its not possible to do so.
Thanks F. Hof

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 15 Mar 2014
Modifié(e) : Azzi Abdelmalek le 15 Mar 2014
function pbuttonStart_Callback(hObject, eventdata, handles)
open_system('RakeGAIN16QAM.mdl');
set_param('RakeGAIN16QAM','initFcn','load test')
set_param('RakeGAIN16QAM','SimulationCommand','start');

Plus de réponses (0)

Catégories

En savoir plus sur Modeling dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by