view prof.m @ 580:2ce903f28193

Make Cell class work with isempty()
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 07 Sep 2017 09:54:21 +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