Effacer les filtres
Effacer les filtres

How to profile a Matlab function within a compiled Simulink program?

7 vues (au cours des 30 derniers jours)
Using the Simulink analysis tool Profiler Report does not include the Matlab function and its subfunctions. I want to profile all subfunctions and calls within the Matlab function. Simulink does not allow the standard Matlab profiler to be present within the Matlab function since the code is to be compiled. Any suggestions?
I could create a dummy program in Matlab that runs the Matlab code within the Matlab function, but I would prefer not to because it's pretty massive.

Réponse acceptée

Matthew Lennon
Matthew Lennon le 26 Avr 2017
Modifié(e) : Matthew Lennon le 26 Avr 2017
To profile execution time, tic and toc still work within matlab functions in simulink. Use disp('description here') to write a small description for each toc to know which component it relates to. Just remember that that the time is cumulative from each tic so add a new tic per section you'd like to evaluate or do the subtractions after.
  1 commentaire
Marcus Jansson
Marcus Jansson le 27 Avr 2017
Cheers Matthew, this was a compromise considering the effort I had to put in. I needed to add coder.extrinsic('disp'), coder.extrinsic('tic'), coder.extrinsic('toc') to make it work.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Manual Performance Optimization dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by