Is there any way to monitor the memory usage of a specific software using MATLAB?
2 次查看(过去 30 天)
显示 更早的评论
In my code, I use actxserver to run MS Excel and in MS Excel, there is a VBA code which runs another software named Maxsurf Modeler. Is it possible to monitor the memory usage of software Maxsurf Modeler via MATLAB?
2 个评论
Walter Roberson
2022-9-13
It would not surprise me if you could use a .NET method to examine memory size.
回答(1 个)
Walter Roberson
2022-9-13
If you start a process using the .NET control System.Diagnostics.Process then the WorkingSet property should return the amount of memory being used for the process; see https://docs.microsoft.com/en-us/dotnet/api/system.diagnostics.process.workingset64?view=net-6.0
https://www.mathworks.com/matlabcentral/answers/583955-get-the-status-using-system-command-when-program-has-been-closed#answer_485480 gives an example of starting a process using System.Diagnostics.Process
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!