How can I log commands being executed by matlab? Like diary() but for all function calls.

16 次查看(过去 30 天)
Hi there,
I have a GUI that wanted to log what the user interacts with. In my understading this would be which function calls are being executed in the background and their order, as the user goes about using the app.
Is there a way to tap into this "input stream" and log them into a file? Similar to diary() function but for all the function calls being executed.
My ultimate goal with this log of inputs is to be able to "replay" and rexecute the set of steps the user has made, programatically. Let me know if you suggest another aproach. I imagine this would be a large stack but I can probably come up with something to filter the relevant bits.
Thanks in advance!
  2 个评论
Walter Roberson
Walter Roberson 2023-9-29
If it were possible at all, it would have to be very extensive since quite a bit of MATLAB is implemented in MATLAB. For example if fsurf() were called, then every line of argument processing of fsurf.m would have to be traced, every test to see what was being done, every calculation to do mesh refinement... until eventually built-in graphics commands were called.
Luciano Branco
Luciano Branco 2023-9-29
编辑:Luciano Branco 2023-9-29
Sure, but I was thinking I could just filter based on the folder of the functions that were called. For example, using profiler as suggested by @Bruno Luong I can easily tell which functions are from my GUI and which are from Matlab.

请先登录,再进行评论。

回答(1 个)

Bruno Luong
Bruno Luong 2023-9-29
Check out profile see if it meets your need.
  7 个评论
Luciano Branco
Luciano Branco 2023-10-2
Interesting.. I will think about these suggestions and see how they would fit our project in the upcoming weeks.
Thank you for your comments, @Walter Roberson @Bruno Luong!
Strider
Strider 2024-6-9
@Luciano Branco My design space sounds similar to yours and I was approaching it with making a SQLite table(s) of known 'meta-deta' to get back to the state of a GUI. The trivial example would be recreating a tiled layout with several signals on it and having a class that can unpack that SQLite file.
I am interested to hear what solution you chose.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 View and Analyze Simulation Results 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by