Mercurial > repos > public > sbplib
view benchmark.m @ 933:34b3d092a4d0 feature/timesteppers
Add methods timePoints and quadWeights to Rungekutta class.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 03 Dec 2018 16:49:43 -0800 |
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