ECG-Kit 1.0

File: <base>/common/prtools/col2gray.m (224 bytes)
%COL2GRAY Fixed mapping converting multi-band images to single band images
%
% COL2GRAY is identical to IM_GRAY, preserved for historical consistency.

function b = col2gray(varargin)
	 
  b = im_gray(varargin{:});
  
return