view benchmark.m @ 434:0bc37a25ed88

Bug fix sbp in time gauss default arg
author Martin Almquist <martin.almquist@it.uu.se>
date Fri, 17 Feb 2017 15:08:25 +0100
parents f9a65e62c5e5
children
line wrap: on
line source

function benchmark(func, N)
    default_arg('N',100);

    tic
    profile on

    for i = 1:N
        func();
    end

    profile viewer
end