Package de.lmu.ifi.dbs.elki.data.synthetic.bymodel.distribution

Examples of de.lmu.ifi.dbs.elki.data.synthetic.bymodel.distribution.NormalDistribution


      stddev = Double.valueOf(stddevstr);
    }

    // *** New normal distribution generator
    Random random = cluster.getNewRandomGenerator();
    Distribution generator = new NormalDistribution(mean, stddev, random);
    cluster.addGenerator(generator);

    // TODO: check for unknown attributes.
    for(Node child : new XMLNodeIterator(cur.getFirstChild())) {
      if(child.getNodeType() == Node.ELEMENT_NODE) {
View Full Code Here

TOP

Related Classes of de.lmu.ifi.dbs.elki.data.synthetic.bymodel.distribution.NormalDistribution

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.