package com.imsl.test.example.stat; import com.imsl.stat.FaureSequence; import com.imsl.math.PrintMatrix; /** *

Generates points of the Faure sequence.

* * In this example, ten points of the Faure sequence are computed. * The points are in a four-dimensional cube. * * @see Code * @see Output */ public class FaureSequenceEx1 { public static void main(String args[]) { FaureSequence seq = new FaureSequence(4); double x[][] = new double[10][]; for (int k = 0; k < 10; k++) { x[k] = seq.nextPoint(); } new PrintMatrix("Faure Sequence").print(x); } }