Mercurial > repos > public > sbplib
view timeTask.m @ 552:ffaf13533c27 feature/grids/laplace_refactor
Reorganize properties of the class
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 29 Aug 2017 10:52:21 +0200 |
parents | 1afd33f719df |
children |
line wrap: on
line source
function done = timeTask(fmt, varargin) fprintf(fmt, varargin{:}); tStart = tic; function done_fun() fprintf(' - done %fs\n', toc(tStart)); end done = @done_fun; end