Mercurial > repos > public > sbplib
view timeTask.m @ 516:afff85574ddb feature/quantumTriangles
Changed the penalty on the first derivative penalty terms, did not solve the problem
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Fri, 07 Jul 2017 14:52:47 +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