view timeTask.m @ 1080:753de514ae77 feature/poroelastic

Add H_1D to LaplaceCurvilinearNewCorner
author Martin Almquist <malmquist@stanford.edu>
date Sun, 03 Mar 2019 15:00:42 -0800
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