235236237238239240241
return rc; } public IClustering fixed(IDataSequence clusters) { return new FixedClustering(clusters); }
240241242243244245246247248
return new FixedClustering(clusters); } public IClustering fixed(IDataSequence data, IDataSequence clusters) { IClustering fc = new FixedClustering(clusters); fc.setInput(data); return fc; }