MATLAB Function Reference |
Syntax
profreport profreport(basename) profreport(stats) profreport(basename,stats)
Description
profreport
終止 profiler,
將現行profiler結果用 HTML 格式產生評論報告, 且在瀏覽器上顯示.
profreport(basename)
終止
profiler, 以現行 profiler 結果用 HTML 格式產生評論報告, 以你提供的basename
將報告存起來,
將在網路瀏覽器顯示. 因為報告包含數個檔案, 請不要給 basename
副檔名.
profreport(stats)
終止
profiler, 以現行 profiler 結果資訊用 HTML 格式產生評論報告, 並且在網路瀏覽器上顯示. 狀態是 profiler以 stats
= profile('info')
傳回的資訊結構.
profreport(basename,stats)
終止 profiler, 以 profiler 報告狀態產生以 HTML 格式的評論報告, 以你提供的basename
的名字將報告儲存起來,並且用網路瀏覽器顯示.
狀態是由stats = profile('info')
所傳回的 profiler 資訊結構.因為報告包含數個檔案, 所以請不要給basename
副檔名.
Examples
profile on -detail builtin -history [t,y] = ode23('lotka',[0 2],[20;20]);
stats = profile('info')
stats = FunctionTable: [42x1 struct] FunctionHistory: [2x830 double] ClockPrecision: 0.0100 Name: 'MATLAB'
ans = FunctionName: 'horzcat' FileName: '' Type: 'Builtin-function' NumCalls: 43 TotalTime: 0 TotalRecursiveTime: 0 Children: [0x1 struct] Parents: [2x1 struct] ExecutedLines: [0x3 double]
See
Also
Improving M-File Performance: the Profiler in Using MATLAB
profile | propedit |