AbstractMultivariateRealDistribution.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      https://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. /*
  18.  * This is not the original file distributed by the Apache Software Foundation
  19.  * It has been modified by the Hipparchus project
  20.  */
  21. package org.hipparchus.distribution.multivariate;

  22. import org.hipparchus.distribution.MultivariateRealDistribution;
  23. import org.hipparchus.exception.LocalizedCoreFormats;
  24. import org.hipparchus.exception.MathIllegalArgumentException;
  25. import org.hipparchus.random.RandomGenerator;

  26. /**
  27.  * Base class for multivariate probability distributions.
  28.  */
  29. public abstract class AbstractMultivariateRealDistribution
  30.     implements MultivariateRealDistribution {
  31.     /** RNG instance used to generate samples from the distribution. */
  32.     protected final RandomGenerator random;
  33.     /** The number of dimensions or columns in the multivariate distribution. */
  34.     private final int dimension;

  35.     /** Simple constructor.
  36.      * @param rng Random number generator.
  37.      * @param n Number of dimensions.
  38.      */
  39.     protected AbstractMultivariateRealDistribution(RandomGenerator rng,
  40.                                                    int n) {
  41.         random = rng;
  42.         dimension = n;
  43.     }

  44.     /** {@inheritDoc} */
  45.     @Override
  46.     public void reseedRandomGenerator(long seed) {
  47.         random.setSeed(seed);
  48.     }

  49.     /** {@inheritDoc} */
  50.     @Override
  51.     public int getDimension() {
  52.         return dimension;
  53.     }

  54.     /** {@inheritDoc} */
  55.     @Override
  56.     public abstract double[] sample();

  57.     /** {@inheritDoc} */
  58.     @Override
  59.     public double[][] sample(final int sampleSize) {
  60.         if (sampleSize <= 0) {
  61.             throw new MathIllegalArgumentException(LocalizedCoreFormats.NUMBER_OF_SAMPLES,
  62.                                                    sampleSize);
  63.         }
  64.         final double[][] out = new double[sampleSize][dimension];
  65.         for (int i = 0; i < sampleSize; i++) {
  66.             out[i] = sample();
  67.         }
  68.         return out;
  69.     }
  70. }