Package stallone.cluster

Examples of stallone.cluster.FixedClustering


        return rc;
    }

    public IClustering fixed(IDataSequence clusters)
    {
        return new FixedClustering(clusters);
    }
View Full Code Here


        return new FixedClustering(clusters);
    }

    public IClustering fixed(IDataSequence data, IDataSequence clusters)
    {
        IClustering fc = new FixedClustering(clusters);
        fc.setInput(data);
        return fc;
    }
View Full Code Here

TOP

Related Classes of stallone.cluster.FixedClustering

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.