【问题标题】:How to save the results from the MATLAB profiler如何保存来自 MATLAB 分析器的结果
【发布时间】:2016-07-21 20:56:17
【问题描述】:

有没有办法保存配置文件的内容,以便 MATLAB 以后可以重新打开窗口? 我对另存为 PDF 不感兴趣。如果有人有关于如何让另存为 html 以在打开时像配置文件一样实际工作的提示,那也很有用。

【问题讨论】:

    标签: matlab profiler


    【解决方案1】:

    您可以使用profsave 将分析器的结果保存为 HTML,然后您可以使用 Web 浏览器打开和导航。

    profile on
    % Run your code to profile
    profile off 
    
    % Path where you want to store the HTML profiler results
    html_folder = 'path/to/html';
    profsave(profile('info'), html_folder)
    

    【讨论】:

      猜你喜欢
      • 2017-11-21
      • 1970-01-01
      • 2014-08-17
      • 1970-01-01
      • 2018-08-13
      • 2018-02-27
      • 1970-01-01
      • 2016-02-16
      • 1970-01-01
      相关资源
      最近更新 更多