view prof.m @ 640:4046b046c1f7 feature/d1_staggered

Add staggered grid class, Staggered<Structured.
author Martin Almquist <malmquist@stanford.edu>
date Sat, 11 Nov 2017 20:25:12 -0800
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