function d=double(c);
% COMPONENTS/DOUBLE converts a Components object into a double matrix
% Usage:
% d=double(c);
%
% Parameters:
% c: the Components object to convert
%
% Note:
% This f
%DOUBLE Dataset / double conversion
%
% d = double(a)
%
% Converts a dataset object a to a double object d, which is just
% the set of datavectors.
% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl
% F
%DOUBLE Mapping / double conversion
%
% d = double(w)
%
% Converts a mapping object w to a double object d, which is either
% the set of weights or the cell array of input mappings.
% Copyright: R.P.
function x = double(x);
%DOUBLE (Overloaded)
% Author Johan L鰂berg
% $Id: double.m,v 1.1 2005/04/29 16:28:03 joloef Exp $
x = double(x.Evaluated{1});
if issymmetric(x)
x = min(eig(x))