Mercurial > repos > public > sbplib
comparison sbplibVersion.m @ 704:111fcbcff2e9 feature/optim
merg with featuew grids
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Fri, 03 Nov 2017 10:53:15 +0100 |
parents | 77db2ef14191 |
children |
comparison
equal
deleted
inserted
replaced
703:027f606fa691 | 704:111fcbcff2e9 |
---|---|
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 location = sbplibLocation(); |
4 [folder,~,~] = fileparts(scriptname); | |
5 | 4 |
6 name = 'sbplib'; | 5 name = 'sbplib (feature/grids)'; |
7 ver = '0.0.x'; | 6 ver = '0.0.x'; |
8 | 7 |
9 fprintf('%s %s\n', name, ver); | 8 fprintf('%s %s\n', name, ver); |
10 fprintf('Running in:\n%s\n',folder); | 9 fprintf('Running in:\n%s\n', location); |
11 end | 10 end |