|
| BigDiscShiftBaker1Lattice (int n, int s, double[] gamma) |
| Constructor for a lattice of \(n\) points in at most \(s\) dimensions, with weights \(\gamma_r = \) gamma[r-1] , \(r = 1,2, …, s\).
|
|
| BigDiscShiftBaker1Lattice (int n, int s) |
| Constructor for a lattice of \(n\) points in at most \(s\) dimensions, with weights \(\gamma_r = 1\).
|
|
double | compute (long[] a, int s) |
| Computes the discrepancy ( shiftBaker1lat ) for a rank-1 lattice in dimension \(s\). More...
|
|
double | compute (double[][] points, int n, int s) |
| NOT IMPLEMENTED.
|
|
double | compute (double[][] points, int n, int s, double[] gamma) |
| NOT IMPLEMENTED.
|
|
| BigDiscShiftBaker1 (double[][] points, int n, int s) |
| Constructor with the \(n\) points points[i] in \(s\) dimensions, with all the weights \(\gamma_r = 1\). More...
|
|
| BigDiscShiftBaker1 (double[][] points, int n, int s, double[] gamma) |
| Constructor with the \(n\) points points[i] in \(s\) dimensions, with weights \(\gamma_r = \) gamma[r-1] . More...
|
|
| BigDiscShiftBaker1 (int n, int s, double[] gamma) |
| Constructor for a lattice of \(n\) points in \(s\) dimensions, with weights \(\gamma_r = \) gamma[r-1] , \(r = 1,2, …, s\). More...
|
|
| BigDiscShiftBaker1 (PointSet set) |
| Constructor with the point set set . More...
|
|
| BigDiscShiftBaker1 () |
| Empty constructor. More...
|
|
double | compute (double[][] points, int n, int s) |
| NOT IMPLEMENTED.
|
|
double | compute (double[][] points, int n, int s, double[] gamma) |
| NOT IMPLEMENTED.
|
|
| BigDiscrepancy (double[][] points, int n, int s) |
| Constructor with the \(n\) points points[i] in \(s\) dimensions. More...
|
|
| BigDiscrepancy (double[][] points, int n, int s, double[] gamma) |
| Constructor with the \(n\) points points[i] in \(s\) dimensions with weight factors gamma . More...
|
|
| BigDiscrepancy (int n, int s, double[] gamma) |
| The number of points is \(n\), the dimension \(s\), and the \(s\) weight factors are gamma[ \(j\)] , \(j = 0, 1, …, (s-1)\). More...
|
|
| BigDiscrepancy (PointSet set) |
| Constructor with the point set set . More...
|
|
| BigDiscrepancy () |
| Empty constructor. More...
|
|
| Discrepancy (double[][] points, int n, int s) |
| Constructor with the \(n\) points points[i] in \(s\) dimensions. More...
|
|
| Discrepancy (double[][] points, int n, int s, double[] gamma) |
| Constructor with the \(n\) points points[i] in \(s\) dimensions and the \(s\) weight factors gamma[ \(j\)] , \(j = 0, 1, …, (s-1)\). More...
|
|
| Discrepancy (int n, int s, double[] gamma) |
| The number of points is \(n\), the dimension \(s\), and the \(s\) weight factors are gamma[ \(j\)] , \(j = 0, 1, …, (s-1)\). More...
|
|
| Discrepancy (PointSet set) |
| Constructor with the point set set . More...
|
|
| Discrepancy () |
| Empty constructor. More...
|
|
double | compute () |
| Computes the discrepancy of all the points in maximal dimension (dimension of the points).
|
|
double | compute (int s) |
| Computes the discrepancy of all the points in dimension \(s\).
|
|
double | compute (double[][] points, int n, int s, double[] gamma) |
| Computes the discrepancy of the first n points of points in dimension s with weights gamma .
|
|
abstract double | compute (double[][] points, int n, int s) |
| Computes the discrepancy of the first n points of points in dimension s with weights \(=1\).
|
|
double | compute (double[][] points) |
| Computes the discrepancy of all the points of points in maximum dimension. More...
|
|
double | compute (double[] T, int n) |
| Computes the discrepancy of the first n points of T in 1 dimension. More...
|
|
double | compute (double[] T) |
| Computes the discrepancy of all the points of T in 1 dimension. More...
|
|
double | compute (double[] T, int n, double gamma) |
| Computes the discrepancy of the first n points of T in 1 dimension with weight gamma .
|
|
double | compute (PointSet set, double[] gamma) |
| Computes the discrepancy of all the points in set in the same dimension as the point set and with weights gamma .
|
|
double | compute (PointSet set) |
| Computes the discrepancy of all the points in set in the same dimension as the point set. More...
|
|
int | getNumPoints () |
| Returns the number of points \(n\).
|
|
int | getDimension () |
| Returns the dimension of the points \(s\).
|
|
void | setPoints (double[][] points, int n, int s) |
| Sets the points to points and the dimension to \(s\). More...
|
|
void | setPoints (double[][] points) |
| Sets the points to points . More...
|
|
void | setGamma (double[] gam, int s) |
| Sets the weight factors to gam for each dimension up to \(s\).
|
|
double [] | getGamma () |
| Returns the weight factors gamma for each dimension up to \(s\).
|
|
String | toString () |
| Returns the parameters of this class.
|
|
String | formatPoints () |
| Returns all the points of this class.
|
|
String | getName () |
| Returns the name of the Discrepancy.
|
|
This class computes the same discrepancy as in umontreal.ssj.discrepancy.DiscShiftBaker1Lattice [see eq.
( shiftBaker1lat )], but uses multi-precision real numbers.