view prof.m @ 614:64a9a8a27858 feature/grids

Add assertion in time.Timestepper for robustness
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 11 Oct 2017 15:44:17 +0200
parents cb65c81d6c87
children
line wrap: on
line source

function prof(f)
    profile on
    try
        f();
        profile viewer
    catch e
        fprintf(2, '\n%s', getReport(e));
        profile clear
    end
end