Home | History | Annotate | Download | only in moment

Lines Matching defs:dimension

49      * @param dimension vectors dimension
53 public VectorialCovariance(int dimension, boolean isBiasCorrected) {
54 sums = new double[dimension];
55 productsSums = new double[dimension * (dimension + 1) / 2];
63 * @exception DimensionMismatchException if the vector does not have the right dimension
85 int dimension = sums.length;
86 RealMatrix result = MatrixUtils.createRealMatrix(dimension, dimension);
91 for (int i = 0; i < dimension; ++i) {