view prof.m @ 429:dde5760863de feature/quantumTriangles

Added a scheme for the time deforming shrodinger equation in 1d
author Ylva Rydin <ylva.rydin@telia.com>
date Mon, 06 Feb 2017 09:54:18 +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