view prof.m @ 209:4fc2631477a3 feature/grids

Removed old versions of blockmatrix implementations.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 16 Jun 2016 09:06:57 +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