Mercurial > repos > public > sbplib
comparison sbplibVersion.m @ 447:ae15b72c16c1 feature/grids
Change the version function to say that we are on the feature/grids branch
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 12 Apr 2017 13:24:16 +0200 |
parents | 67ab7fd8054c |
children | 77db2ef14191 |
comparison
equal
deleted
inserted
replaced
446:112bac1beb11 | 447:ae15b72c16c1 |
---|---|
1 % Prints the version and location of the sbplib currently in use. | 1 % Prints the version and location of the sbplib currently in use. |
2 function sbplibVersion() | 2 function sbplibVersion() |
3 scriptname = mfilename('fullpath'); | 3 scriptname = mfilename('fullpath'); |
4 [folder,~,~] = fileparts(scriptname); | 4 [folder,~,~] = fileparts(scriptname); |
5 | 5 |
6 name = 'sbplib'; | 6 name = 'sbplib (feature/grids)'; |
7 ver = '0.0.x'; | 7 ver = '0.0.x'; |
8 | 8 |
9 fprintf('%s %s\n', name, ver); | 9 fprintf('%s %s\n', name, ver); |
10 fprintf('Running in:\n%s\n',folder); | 10 fprintf('Running in:\n%s\n',folder); |
11 end | 11 end |