- Access Data in MATLAB Function During Simulation: https://www.mathworks.com/help/simulink/slref/simulink.hmi.instrumentedsignals.html
- Save and restore signal logging specification: https://www.mathworks.com/help/simulink/ug/create-custom-visualizations-during-simulation.html
- View Signal Logging Configuration using Model Explorer: https://www.mathworks.com/help/simulink/ug/view-the-signal-logging-configuration.html#:~:text=in%20model.-,View%20Signal%20Logging%20Configuration%20Using%20the%20Model%20Explorer,-To%20open%20the
Why "ObserverParams" property is empty eventhough the 'Function name' and 'Function paramater' are filled?
2 次查看(过去 30 天)
显示 更早的评论
On the 'Instrumentation Properties' dialog box ,I have filled the function name and function parameter necessary for the signal which is logged.
Now when I try to get the ObserverParams,it is returning an empty strucure.
Can anyone help me with this?
0 个评论
回答(1 个)
Rahul
2024-10-21,3:47
Hi Praful,
I understand that you’re trying to find the “Data Access” Instrumentation Property of a Signal Marked for Logging in a Simulink Model, through “ObserverParams” when using “Simulink.HMI.SignalClients” command in MATLAB Command Window.
The specified command simply creates an empty object of type “Simulink.HMI.SignalClients” which has a default property of “ObserverParams” as an empty structure and does not represent the currently logged signals or their data access functions.
In case you want to access the file path containing the data access function, you can manually include following lines of code in its implementation:
disp(['Function Name: ', mfilename]);
disp(['Function Path: ', mfilename('fullpath')]);
This could help in identifying the exact function being executed upon simulation, and its exact path. You can then access the function implementation by using ‘open(filePath)’ function to open the function file, using the ‘filepath’ displayed in the command window.
For more information regarding data logging and accessing instrumented signals during simulation, refer to the documentation links mentioned below:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Prepare Model Inputs and Outputs 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!