Package orientation3

Source Code of orientation3.RunMCMC

package orientation3;

import org.apache.commons.math.random.RandomDataImpl;
import org.apache.commons.math.random.RandomGenerator;
import org.apache.commons.math.random.Well44497b;

public class RunMCMC {
  public static void main(String[] args){
    //-------------- random number generator -----------------
    RandomGenerator rg = new Well44497b();
    RandomDataImpl rng = new RandomDataImpl(rg);
    //--------------- initial data points ----------------
   
    //-----initial currentPartition and proposedPartition---------
   
    //partition prior
   
    //parameter prior
   
    //LLH
   
    //proposal path
   
    //
   
    //------ initial capacity for posterior draws -----------------
   
  }
}
TOP

Related Classes of orientation3.RunMCMC

TOP
Copyright © 2018 www.massapi.com. 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.