[Maximum Timing for Simulation]
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Binh Huynh Thanh
am 1 Feb. 2019
Beantwortet: Binh Huynh Thanh
am 3 Feb. 2019
Hi, I have a simulink model and I would to know that what is the maximum the timing value can be assigned for simulation ?
Maximum = ???
>> sim('modelName','StartTime','0','StopTime',Maximum,'FixedStep','0.01');
Thank you.
0 Kommentare
Akzeptierte Antwort
Mundrathi Venugopal
am 1 Feb. 2019
I'm not sure about the maximum time that you can specify for a model.
However If you want to run the model continuously until you stop, you can assign the stop time as below.
set_param(bdroot,'StartTime','0','StopTime','Inf','FixedStep','0.01');
sim(bdroot);
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Multicore Processor Targets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!