Examples of LogisticDistribution


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

        MatrixFactory.getDefault().copyArray(new double[][] {
            {1d, 0d},
            {0d, 1d}}));
    final int N = 100;
    final List<ObservedValue<Vector, Matrix>> observations = Lists.newArrayList();
    final LogisticDistribution ev1Dist = new LogisticDistribution(0d, 1d);

    List<SimObservedValue<Vector, Matrix, Vector>> dlmSamples = DlmUtils.sampleDlm(
        rng, N, trueInitialPrior, initialFilter);
    for (SimObservedValue<Vector, Matrix, Vector> samplePair : dlmSamples) {
      final double ev1Upper = -Math.log(-Math.log(rng.nextDouble()));
View Full Code Here

Examples of org.renjin.stats.internals.distributions.LogisticDistribution

    return Geometric.qgeom(p, prob, lowerTail, log);
  }

  @DataParallel @Internal
  public static double plogis(@Recycle double p, @Recycle double m, @Recycle double s, boolean lowerTail, boolean logP) {
    return p(new LogisticDistribution(m, s), p, lowerTail, logP);
  }
View Full Code Here

Examples of org.renjin.stats.internals.distributions.LogisticDistribution

    return p(new LogisticDistribution(m, s), p, lowerTail, logP);
  }

  @DataParallel @Internal
  public static double dlogis(@Recycle double x, @Recycle double location, @Recycle double scale, boolean log) {
    return d(new LogisticDistribution(location, scale), x, log);
  }
View Full Code Here

Examples of org.renjin.stats.internals.distributions.LogisticDistribution

    return d(new LogisticDistribution(location, scale), x, log);
  }

  @DataParallel @Internal
  public static double qlogis(@Recycle double p, @Recycle double m, @Recycle double s, boolean lowerTail, boolean logP) {
    return q(new LogisticDistribution(m, s), p, lowerTail, logP);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.