Mercurial > repos > public > sbplib
view sbplibVersion.m @ 549:ae905a11e32c feature/grids
Change away from matrix formulation in Rk4 second order form
The new formulation can be up to 8 times faster
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 28 Aug 2017 11:06:00 +0200 |
parents | ae15b72c16c1 |
children | 77db2ef14191 |
line wrap: on
line source
% Prints the version and location of the sbplib currently in use. function sbplibVersion() scriptname = mfilename('fullpath'); [folder,~,~] = fileparts(scriptname); name = 'sbplib (feature/grids)'; ver = '0.0.x'; fprintf('%s %s\n', name, ver); fprintf('Running in:\n%s\n',folder); end