ECG-Kit 1.0

File: <base>/common/prtools/medianc.m (1,466 bytes)
%MEDIANC Median combining classifier
% 
% 	W = MEDIANC(V)
% 	W = V*MEDIANC
% 
% INPUT
%    V     Set of classifiers
%		
% OUTPUT
%    W     Median combining classifier on V
%
% DESCRIPTION
% If V = [V1,V2,V3, ... ] is a set of classifiers trained on the same
% classes, then W is the median combiner: it selects the class with
% the median of the outputs of the input classifiers. This might also
% be used as A*[V1,V2,V3]*MEDIANC, in which A is a dataset to be
% classified.
% 
% If it is desired to operate on posterior probabilities then the input 
% classifiers should be extended to output these, as V = V*CLASSC.
% 
% SEE ALSO (<a href="http://37steps.com/prtools">PRTools Guide</a>)
% MAPPINGS, DATASETS, VOTEC, MAXC, MINC, PRODC, MEANC, AVERAGEC, STACKED, 
% PARALLEL, FIXEDCC
%
% EXAMPLES
% See PREX_COMBINING.

% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl
% Faculty of Applied Sciences, Delft University of Technology
% P.O. Box 5046, 2600 GA Delft, The Netherlands 

% $Id: medianc.m,v 1.2 2006/03/08 22:06:58 duin Exp $

function w = medianc (p1)

	% The median combiner is constructed as a fixed combiner (FIXEDCC) of
	% type 'median'.
	
	type = 'median'; name = 'Median combiner';   
                   
  % Possible calls: MEDIANC, MEDIANC(W) or MEDIANC(A,W).
 	        
	if (nargin == 0)
		w = prmapping('fixedcc','combiner',{[],type,name});
	else
		w = fixedcc(p1,[],type,name);
	end

	if (isa(w,'prmapping'))
		w = setname(w,name);
	end

return