Package gov.sandia.cognition.statistics.distribution

Examples of gov.sandia.cognition.statistics.distribution.ExponentialDistribution


      final MultivariateGaussian augResponseDist = particle.getAugmentedResponseDistribution();

      final MultivariateGaussian updatedBetaMean = particle.getPriorBeta().clone();

      final List<Double> lambdaSamples =
          new ExponentialDistribution(2).sample(random, updatedBetaMean.getInputDimensionality());
      final Matrix lambdaSamplesMatrix =
          MatrixFactory.getDenseDefault().createDiagonal(
              VectorFactory.getDenseDefault().copyValues(lambdaSamples));
     
      /*
 
View Full Code Here

TOP

Related Classes of gov.sandia.cognition.statistics.distribution.ExponentialDistribution

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.