Mercurial > repos > public > sbplib
view timeTask.m @ 763:f2f5efc3644f feature/grids
time.SBPInTimeSecondOrderFormImplicit: Fix default value for A
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 20 Jun 2018 12:59:07 +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