Mercurial > repos > public > sbplib
view timeTask.m @ 1091:b4054942e277 feature/dataspline
Rewrite dataSpline() avoiding the spline function in Curve and using fnder for the differentiation
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 05 Apr 2019 10:17:04 +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