view benchmark.m @ 365:f908ce064f35

Added SBP in time timestepper.
author Martin Almquist <martin.almquist@it.uu.se>
date Tue, 24 Jan 2017 14:01:18 +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