view prof.m @ 635:bb1180becc30 feature/grids

Merge bugfix/TiVectorInputs
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 23 Oct 2017 16:43:37 +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