// ================================================================
// John Kerl
// kerl.john.r@gmail.com
// 2010-02-18
// ================================================================

import java.util.Random;

public class BrownianMotionTest2 {

	public static void main(String[] args) {
		Random RNG = new Random();
		int nX    =   10;
		int nt    = 1000;
		double dt = 0.01;
		double Xs[][] = new double[nX][nt];

		for (int j = 0; j < nX; j++)
			BrownianMotion.getSeries(Xs[j], nt, dt, RNG);

		SeriesIO.printSeries(Xs, nX, nt, dt, 0.0);
	}
}
