| Package | Description |
|---|---|
| math.list |
Resizable primitive double[] array implementation.
|
| Modifier and Type | Method and Description |
|---|---|
static DoubleArrayList |
DoubleArrayList.of(double... values)
Constructs a list containing the passed values in the order of their
appearance.
|
static DoubleArrayList |
DoubleArrayList.randomNormal(double mu,
double sigma,
int size)
Constructs a random list of length
size with random values
normally distributed with mean mu and standard deviation
sigma. |
static DoubleArrayList |
DoubleArrayList.randomUniform(double min,
double max,
int size)
Constructs a random list of length
size with random values
uniformly distributed between min and max. |
Copyright © 2022. All rights reserved.