view prof.m @ 343:ac30761d7bdb feature/beams

Fixed bug in parameter parsing.
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 04 Nov 2016 11:14:29 -0700
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