view prof.m @ 539:08b6281ba2a9 feature/grids

Add some todos
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 08 Aug 2017 13:25:19 +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