HAVE_FEATURE_RITHMATICKER Detect availability/version info for rithmaticker Feature detection function implementing 'rithmaticker' tag for HAVE_FEATURE to detect availability of RITHMATICKER (HAVE_FEATURE test function). See also HAVE_FEATURE.
0001 function [TorF, vstr, rdate] = have_feature_rithmaticker() 0002 %HAVE_FEATURE_RITHMATICKER Detect availability/version info for rithmaticker 0003 % 0004 % Feature detection function implementing 'rithmaticker' tag for HAVE_FEATURE 0005 % to detect availability of RITHMATICKER (HAVE_FEATURE test function). 0006 % 0007 % See also HAVE_FEATURE. 0008 0009 % MP-Test 0010 % Copyright (c) 2004-2020, Power Systems Engineering Research Center (PSERC) 0011 % by Ray Zimmerman, PSERC Cornell 0012 % 0013 % This file is part of MP-Test. 0014 % Covered by the 3-clause BSD License (see LICENSE file for details). 0015 % See https://github.com/MATPOWER/mptest for more info. 0016 0017 TorF = exist('rithmaticker', 'file') == 2; 0018 if TorF 0019 vstr = '3.1.4'; 0020 rdate = datestr([2019 5 30 0 0 0], 'dd-mmm-yyyy'); 0021 else 0022 vstr = ''; 0023 rdate = ''; 0024 end