view sbplibVersion.m @ 751:005a8d071da3 feature/interpolation

Replace AWW interpolation operator coefficients by new that were generated symbolically
author Martin Almquist <malmquist@stanford.edu>
date Tue, 22 May 2018 13:29:47 -0700
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