Profiling for cells instead of functions
1 回表示 (過去 30 日間)
古いコメントを表示
I have a function that in turn calls many more functions. I want to use the profiler to identify what parts of the code is most time demanding.
Is it possible to get the profile summary sorted by cells, instead of function calls?
For instance, is it possible to get the profiler to output this:
Cells Calls Total time ...
Part 1 1 .... ...
Part 2 1 .... ...
instead of:
Function name Calls Total time ...
func1 1 .... ...
func2 1 .... ...
For the following code:
%%Part 1:
a = 1;
b = 2;
X = func1(a,b);
%%Part 2:
c = a+b;
Y = func2(c,b);
Thanks!
0 件のコメント
回答 (1 件)
the cyclist
2013 年 5 月 12 日
編集済み: the cyclist
2013 年 5 月 12 日
I looked through
>> doc profile
and also some articles here:
and did not see any mention of that ability.
2 件のコメント
the cyclist
2013 年 5 月 12 日
I guess you could artificially put your cells into functions for profiling, but that just seems silly. :-)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!