view prof.m @ 1001:514a98f9f90d feature/getBoundaryOp

Add getBoundaryOperator and getBoundaryQuadrature as abstract methods in scheme.Scheme
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 16 Jan 2019 16:35:01 +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