Printing debugging information simulink
39 views (last 30 days)
Show older comments
Hi all
I basically have a simulink simulation that has a lot of matlab function blocks. The simulation is rather complex. Therefore, I would like to somehow display information about the current status of the simulation. I would like to visualize text and some variables. I have tried "fprintf" within the matlab functions, but my messages get piled up with a lot of simulink information in the "view diagnostics". Is there any block that allows me to display text in simulink? Or could I have a command that prints text in the workspace?
Thanks
Róbinson
0 Comments
Answers (1)
Kritika Bansal
on 17 Jul 2019
Hi,
As per my understanding, you are trying to debug your Simulink model which contains MATLAB function blocks. You are looking for a way to display the values of the variables either by inserting a block in his simulation or by using a command that displays the values in the workspace.
There is a block called ‘Display’ in Simulink’s ‘Sinks’ library. You can add it either via the library browser or by double clicking the Simulink canvas and typing ‘Display’ and choosing the one present under ‘Simulink/Sinks’.
An alternative and a better solution would be to display the signal values directly on the signals (connections) of your Simulink model during the simulation and using ‘Step forward’ button instead of ‘Run’ to see the results of your simulation at each step.
More information can be found in the links below:
In case you specifically want to debug your MATLAB function blocks you can insert breakpoints in your MATLAB function and use the debugger. For more information on how to do that, use the link below:
See Also
Categories
Find more on Programmatic Model Editing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!