rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
matlab_version.m
1 function res = matlab_version
2 %function res = matlab_version
3 %
4 % return numerical value of MATLAB version. Currently used to
5 % switch between ichol and cholinc.
6 
7 % B. Haasdonk 11.2.2014
8 
9 v = ver('MATLAB');
10 res = str2num(v.Version);