Print in workspace during simulink simulation
Mostrar comentarios más antiguos
Hi, Folks!
I have a simulink system with S-function block. In this S-function I do some calculations that I would like to print during the simulation in the Matlab workspace.
I have done the algorithm in S-function Builder under Outputs. However, the results is given just when the simulation overs and not each time during the simulation.
Any idea?
I appreciate your contribution.
Respuestas (1)
Vidhi Agarwal
el 17 de Sept. de 2024
0 votos
I understand you are facing an issue in printing the values during the simulation, but you have an algorithm in S-function Builder under Outputs, which gives result after simulation is over. Here are some strategies to resolve this issue:
- Ensure you're using “disp” or “fprintf” to print messages and follow it with “drawnow” to force MATLAB to update the Command Window immediately.
- Run your simulation in “Normal mode”. Other modes like Accelerator or Rapid Accelerator may not execute MATLAB code in real-time.
- Ensure your print statements are within the “Outputs” or “Update” functions of the S-Function, as these are called during each simulation step.
- If you want to capture all printed output to a file for review, use the “diary” function.
For better understanding of drawnow and dairy, refer to the following documentation:
- https://www.mathworks.com/help/matlab/ref/drawnow.html
- https://www.mathworks.com/help/matlab/ref/diary.html
Hope that Helps!
Categorías
Más información sobre Simulink Environment Customization en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!