Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How to Collect The Time Calculated By (Tic& Toc) at each instant to Solve an Optimisation Problem in a Simulink model ?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am solving an optimisation problem in a simulink model using a mtlab function block and I am using 'Tic & Toc" to calculate the time taken to solve the problem .the issue is that the resulted time is per each instant of solving the optimisation problem and my aim is to store each instant in an array so that I can calculate the average time taken by the whole process.
.How can I solve this issue?
Note:I have tried using a for loop but I was not sure about its limit ( for n=1:?)
1 Kommentar
Antworten (2)
Dinesh Yadav
am 24 Mär. 2020
I think inside the matlab function block you should run the loop for at least 1000 times to get a better estimate of avg time per computation cycle. By whole process if you mean running time of entire model follow the link below
Hope it helps.
0 Kommentare
Ameer Hamza
am 24 Mär. 2020
You can use the profiling tools officially provided by Mathworks to measure the execution time of each block inside the Simulink model. See the detail of how to use the profiler: https://www.mathworks.com/help/simulink/ug/how-profiler-captures-performance-data.html
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!