view sbplibVersion.m @ 559:e3f587bfd7f8 feature/grids/laplace_refactor

Fix bug where boundary operators were not stored in their properties
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 29 Aug 2017 13:03:45 +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