Mercurial > repos > public > sbplib
view timeTask.m @ 1078:532b58a9e849
Bugfix in multiblock.domain.Line method getGrid.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 20 Feb 2019 12:32:49 -0800 |
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