Package ch.akuhn.mds

Examples of ch.akuhn.mds.MultidimensionalScaling


                .build();

        System.out.println(hapax.getIndex());

        Viz viz = VIZ ? new Viz().open() : null;
        new MultidimensionalScaling()
                .similarities(hapax.getIndex().documentCorrelation().asArray())
                .verbose()
                .listener(viz)
                .iterations(Integer.MAX_VALUE)
                .run();
View Full Code Here


       
//        persistPoints();
//        loadPoints();
       
//        // MDS
        double[][] ps = new MultidimensionalScaling()
            .similarities(index.documentCorrelation().asArray())
            .initialConfiguration(x, y)
            .run();
        x = ps[0];
        y = ps[1];
View Full Code Here

TOP

Related Classes of ch.akuhn.mds.MultidimensionalScaling

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.