using get_Param inside an S-function
Mostra commenti meno recenti
function [sys]= mdlOutputs(t,x,u,flag,Label)
tSTOP = get_param('Model','StopTime');
if(tSTOP == (1000*ceil(t/1000)))
fclose(FID);t
end
sys = [];
return;
end
tSTOP is not seen inside the 'if' loop. The value of 't' does not get printed out. If I replace tSTOP with the numerical value of tTSOP it works fine. Any help is appreciated.
3 Commenti
Aswartha Narayana
il 28 Nov 2011
Aswartha Narayana
il 28 Nov 2011
Walter Roberson
il 8 Dic 2011
There is no such thing as an if loop.
Risposte (2)
Aswartha Narayana
il 28 Nov 2011
0 voti
Guy Rouleau
il 29 Nov 2011
0 voti
What you are doing (closing the file) should be done in mdlTerminate!
Categorie
Scopri di più su Model, Block, and Port Callbacks in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!