ECG-Kit 1.0

File: <base>/common/prtools/statscheck.m (230 bytes)
%STATSCHECK  Check whether the STATS toolbox is in the path

function n = statscheck
	
  n = ~isempty(ver('stats'));
  if (nargout == 0) & (n == 0)
		error([newline 'The Matlab STATS toolbox is missing.'])
  end
		
return