Mercurial > repos > public > sbplib
view timeTask.m @ 1290:b0208b130880 feature/boundary_optimized_grids
Add option to pass a boundary optimized grid to Rectangle.getGrid
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 01 Jul 2020 17:34:40 +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