Java org.apache.commons.math3.distribution ParetoDistribution fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.distribution ParetoDistribution fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.distribution ParetoDistribution.

The text is from its open source code.

Constructor

ParetoDistribution(double scale, double shape, double inverseCumAccuracy)
Create a Pareto distribution using the specified scale, shape and inverse cumulative distribution accuracy.
ParetoDistribution(RandomGenerator rng, double scale, double shape)
Creates a Pareto distribution.
ParetoDistribution(double scale, double shape)
Create a Pareto distribution using the specified scale and shape.

Method

double[]sample(int sampleSize)
The default implementation generates the sample by calling #sample() in a loop.