Mercurial > repos > public > sbplib
view timeTask.m @ 1009:87809b4762c9 feature/advectionRV
Draft implementation of scheme for advection with RV
- Implement standard advection scheme. No working support for RV
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 31 Oct 2018 09:31:34 -0700 |
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