Mercurial > repos > public > sbplib
view timeTask.m @ 994:2f89959fb9f0 feature/timesteppers
Implement method to get gain from butcher tableu
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 09 Jan 2019 12:14:30 +0100 |
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