comparison prof.m @ 193:cb65c81d6c87

Added functions to easily time and profile a function.
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 24 May 2016 08:42:27 +0200
parents
children
comparison
equal deleted inserted replaced
149:e8c5092d3f1b 193:cb65c81d6c87
1 function prof(f)
2 profile on
3 try
4 f();
5 profile viewer
6 catch e
7 fprintf(2, '\n%s', getReport(e));
8 profile clear
9 end
10 end