view prof.m @ 900:b45a6dcb61ac bcSetupExperiment

Merge with default
author Jonatan Werpers <jonatan@werpers.com>
date Sat, 24 Nov 2018 15:52:47 +0100
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