LUKE - This function specifies the tag of the current LUKE version and the corresponding supported MatLab version This function specifies the tag of the current LUKE version and the corresponding supported MatLab version and release Input: none Output: - lukeversion: CVS version on LUKE [1,p] - matlabversion: Matlab version of LUKE (must be greater or equal to 705) [1,p] - matlabrelease: Matlab release (Ryyyya or Ryyyyb, where yyyy is the year) [1,p] Warning: none by Y.Peysson CEA/DSM/IRFM <yves.peysson@cea.fr> and Joan Decker CEA/DSM/IRFM (joan.decker@cea.fr)
0001 function [lukeversion,matlabversion,matlabrelease] = LUKEversion_jd 0002 %LUKE - This function specifies the tag of the current LUKE version and the corresponding supported MatLab version 0003 % 0004 % This function specifies the tag of the current LUKE version and the 0005 % corresponding supported MatLab version and release 0006 % 0007 % Input: none 0008 % 0009 % Output: 0010 % 0011 % - lukeversion: CVS version on LUKE [1,p] 0012 % - matlabversion: Matlab version of LUKE (must be greater or equal to 705) [1,p] 0013 % - matlabrelease: Matlab release (Ryyyya or Ryyyyb, where yyyy is the year) [1,p] 0014 % 0015 % Warning: none 0016 % 0017 %by Y.Peysson CEA/DSM/IRFM <yves.peysson@cea.fr> and Joan Decker CEA/DSM/IRFM (joan.decker@cea.fr) 0018 % 0019 lukeversion = 'LUKE 1.11.0'; 0020 % 0021 [matlabversion,matlabrelease] = matversion_yp; 0022 % 0023 if str2double(matlabversion) < 705; 0024 error('Version of MatLab prior to R2007B (7.5) are no longer supported'); 0025 end