Why does the 'LoadFcn' Callback of a commented block get executed in Simulink R2024b?
25 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 14 de Nov. de 2016
Editada: MathWorks Support Team
el 12 de Nov. de 2024 a las 19:13
Why does the 'LoadFcn' Callback of a commented block get executed in Simulink R2024b?
Respuesta aceptada
MathWorks Support Team
el 6 de Nov. de 2024 a las 0:00
Editada: MathWorks Support Team
el 12 de Nov. de 2024 a las 19:13
As for Simulink R2024b, this is the expected behavior.
We can classify the block callbacks in two categories: edit time and run time.
Edit time callbacks like the 'LoadFcn' callback need to execute even if the block is commented out. Just to display the commented block in the model, the block needs to be loaded, and the load callback is triggered. A similar behavior is observed with the 'DeleteFcn' and 'DestroyFcn' callbacks.
On the other hand, callbacks that are runtime (not needed for editing) like 'InitFcn' and 'StartFcn' are not triggered for commented out blocks and inactive variants.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Simulink Environment Customization en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!