comparison time.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 305d8bb366ce
comparison
equal deleted inserted replaced
149:e8c5092d3f1b 193:cb65c81d6c87
1 function t = time(f)
2 s = tic();
3
4 f();
5
6 if nargout == 1
7 t = toc(s);
8 else
9 toc(s);
10 end