Package | Description |
---|---|
cern.colt.map.tint |
Automatically growing and shrinking map holding elements of int data type.
|
cern.colt.map.tlong |
Automatically growing and shrinking map holding elements of long data type.
|
cern.colt.matrix.tint |
Matrix interfaces and factories holding elements of int data type.
|
cern.colt.matrix.tint.impl |
Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of int data type.
|
cern.jet.math.tint |
Tools for basic and advanced mathematics: Arithmetics and Function Objects for generic function evaluation operating on int data type.
|
cern.jet.random.tdouble |
Large variety of probability distributions featuring high performance generation
of random numbers, CDF's and PDF's.
|
cern.jet.random.tdouble.engine |
Engines generating strong uniformly distributed pseudo-random numbers;
Needed by all JET probability distributions since they rely on uniform random numbers to generate random numbers from their own distribution.
|
cern.jet.random.tfloat |
Large variety of probability distributions featuring high performance generation
of random numbers, CDF's and PDF's.
|
cern.jet.random.tfloat.engine |
Engines generating strong uniformly distributed pseudo-random numbers;
Needed by all JET probability distributions since they rely on uniform random numbers to generate random numbers from their own distribution.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractIntIntMap.assign(IntFunction function)
Assigns the result of a function to each value;
v[i] = function(v[i]).
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractLongIntMap.assign(IntFunction function)
Assigns the result of a function to each value;
v[i] = function(v[i]).
|
Modifier and Type | Method and Description |
---|---|
int |
IntMatrix3D.aggregate(IntIntFunction aggr,
IntFunction f)
Applies a function to each cell and aggregates the results.
|
int |
IntMatrix1D.aggregate(IntIntFunction aggr,
IntFunction f)
Applies a function to each cell and aggregates the results.
|
int |
IntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f)
Applies a function to each cell and aggregates the results.
|
int |
IntMatrix1D.aggregate(IntIntFunction aggr,
IntFunction f,
IntArrayList indexList)
Applies a function to all cells with a given indexes and aggregates the
results.
|
int |
IntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f,
IntArrayList rowList,
IntArrayList columnList)
Applies a function to all cells with a given indexes and aggregates the
results.
|
int |
IntMatrix3D.aggregate(IntIntFunction aggr,
IntFunction f,
IntArrayList sliceList,
IntArrayList rowList,
IntArrayList columnList)
Applies a function to all cells with a given indexes and aggregates the
results.
|
int |
IntMatrix3D.aggregate(IntIntFunction aggr,
IntFunction f,
IntProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
int |
IntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f,
IntProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
IntMatrix3D |
IntMatrix3D.assign(IntFunction function)
Assigns the result of a function to each cell;
x[slice,row,col] = function(x[slice,row,col]).
|
IntMatrix1D |
IntMatrix1D.assign(IntFunction f)
Assigns the result of a function to each cell;
x[i] = function(x[i]).
|
IntMatrix2D |
IntMatrix2D.assign(IntFunction f)
Assigns the result of a function to each cell;
x[row,col] = function(x[row,col]).
|
IntMatrix3D |
IntMatrix3D.assign(IntProcedure cond,
IntFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
IntMatrix1D |
IntMatrix1D.assign(IntProcedure cond,
IntFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
IntMatrix2D |
IntMatrix2D.assign(IntProcedure cond,
IntFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
Modifier and Type | Method and Description |
---|---|
int |
DenseIntMatrix3D.aggregate(IntIntFunction aggr,
IntFunction f) |
int |
DenseIntMatrix1D.aggregate(IntIntFunction aggr,
IntFunction f) |
int |
DenseIntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f) |
int |
DenseColumnIntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f) |
int |
DenseIntMatrix1D.aggregate(IntIntFunction aggr,
IntFunction f,
IntArrayList indexList) |
int |
DenseIntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f,
IntArrayList rowList,
IntArrayList columnList) |
int |
DenseColumnIntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f,
IntArrayList rowList,
IntArrayList columnList) |
int |
DenseIntMatrix3D.aggregate(IntIntFunction aggr,
IntFunction f,
IntArrayList sliceList,
IntArrayList rowList,
IntArrayList columnList) |
int |
DenseIntMatrix3D.aggregate(IntIntFunction aggr,
IntFunction f,
IntProcedure cond) |
int |
DenseIntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f,
IntProcedure cond) |
int |
DenseColumnIntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f,
IntProcedure cond) |
IntMatrix2D |
DiagonalIntMatrix2D.assign(IntFunction function) |
IntMatrix3D |
DenseIntMatrix3D.assign(IntFunction function) |
IntMatrix1D |
DenseIntMatrix1D.assign(IntFunction function) |
IntMatrix2D |
DenseIntMatrix2D.assign(IntFunction function) |
IntMatrix2D |
SparseRCIntMatrix2D.assign(IntFunction function) |
IntMatrix2D |
DenseColumnIntMatrix2D.assign(IntFunction function) |
IntMatrix2D |
SparseCCIntMatrix2D.assign(IntFunction function) |
IntMatrix2D |
SparseIntMatrix2D.assign(IntFunction function) |
IntMatrix3D |
DenseIntMatrix3D.assign(IntProcedure cond,
IntFunction f) |
IntMatrix1D |
DenseIntMatrix1D.assign(IntProcedure cond,
IntFunction function) |
IntMatrix2D |
DenseIntMatrix2D.assign(IntProcedure cond,
IntFunction function) |
IntMatrix2D |
DenseColumnIntMatrix2D.assign(IntProcedure cond,
IntFunction function) |
Modifier and Type | Class and Description |
---|---|
class |
IntMult
Only for performance tuning of compute intensive linear algebraic
computations.
|
Modifier and Type | Field and Description |
---|---|
static IntFunction |
IntFunctions.abs
Function that returns Math.abs(a) == (a < 0) ? -a : a.
|
static IntFunction |
IntFunctions.dec
Function that returns a--.
|
static IntFunction |
IntFunctions.factorial
Function that returns (int) Arithmetic.factorial(a).
|
static IntFunction |
IntFunctions.identity
Function that returns its argument.
|
static IntFunction |
IntFunctions.inc
Function that returns a++.
|
static IntFunction |
IntFunctions.neg
Function that returns -a.
|
static IntFunction |
IntFunctions.not
Function that returns ~a.
|
static IntFunction |
IntFunctions.sign
Function that returns a < 0 ? -1 : a > 0 ? 1 : 0.
|
static IntFunction |
IntFunctions.square
Function that returns a * a.
|
Modifier and Type | Method and Description |
---|---|
static IntFunction |
IntFunctions.and(int b)
Constructs a function that returns a & b.
|
static IntFunction |
IntFunctions.between(int from,
int to)
Constructs a function that returns (from<=a && a<=to) ? 1 : 0.
|
static IntFunction |
IntFunctions.bindArg1(IntIntFunction function,
int c)
Constructs a unary function from a binary function with the first operand
(argument) fixed to the given constant c.
|
static IntFunction |
IntFunctions.bindArg2(IntIntFunction function,
int c)
Constructs a unary function from a binary function with the second
operand (argument) fixed to the given constant c.
|
static IntFunction |
IntFunctions.chain(IntFunction g,
IntFunction h)
Constructs the function g( h(a) ).
|
static IntFunction |
IntFunctions.compare(int b)
Constructs a function that returns a < b ? -1 : a > b ? 1 : 0.
|
static IntFunction |
IntFunctions.constant(int c)
Constructs a function that returns the constant c.
|
static IntFunction |
IntFunctions.div(int b)
Constructs a function that returns a / b.
|
static IntFunction |
IntFunctions.equals(int b)
Constructs a function that returns a == b ? 1 : 0.
|
static IntFunction |
IntFunctions.max(int b)
Constructs a function that returns Math.max(a,b).
|
static IntFunction |
IntFunctions.min(int b)
Constructs a function that returns Math.min(a,b).
|
static IntFunction |
IntFunctions.minus(int b)
Constructs a function that returns a - b.
|
static IntFunction |
IntFunctions.mod(int b)
Constructs a function that returns a % b.
|
static IntFunction |
IntFunctions.mult(int b)
Constructs a function that returns a * b.
|
static IntFunction |
IntFunctions.or(int b)
Constructs a function that returns a | b.
|
static IntFunction |
IntFunctions.plus(int b)
Constructs a function that returns a + b.
|
static IntFunction |
IntFunctions.pow(int b)
Constructs a function that returns (int) Math.pow(a,b).
|
static IntFunction |
IntFunctions.random()
Constructs a function that returns a 32 bit uniformly distributed random
number in the closed longerval [Int.MIN_VALUE,Int.MAX_VALUE]
(including Int.MIN_VALUE and Int.MAX_VALUE).
|
static IntFunction |
IntFunctions.shiftLeft(int b)
Constructs a function that returns a << b.
|
static IntFunction |
IntFunctions.shiftRightSigned(int b)
Constructs a function that returns a >> b.
|
static IntFunction |
IntFunctions.shiftRightUnsigned(int b)
Constructs a function that returns a >>> b.
|
static IntFunction |
IntFunctions.xor(int b)
Constructs a function that returns a | b.
|
Modifier and Type | Method and Description |
---|---|
static IntFunction |
IntFunctions.chain(IntFunction g,
IntFunction h)
Constructs the function g( h(a) ).
|
static IntIntFunction |
IntFunctions.chain(IntFunction g,
IntIntFunction h)
Constructs the function g( h(a,b) ).
|
static IntIntFunction |
IntFunctions.chain(IntIntFunction f,
IntFunction g,
IntFunction h)
Constructs the function f( g(a), h(b) ).
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractContinousDoubleDistribution
Abstract base class for all continous distributions.
|
class |
AbstractDiscreteDistribution
Abstract base class for all discrete distributions.
|
class |
AbstractDoubleDistribution
Abstract base class for all random distributions.
|
class |
Beta
Beta distribution; math definition and
animated definition.
|
class |
Binomial
Binomial distribution; See the math definition and
animated definition.
|
class |
BreitWigner
BreitWigner (aka Lorentz) distribution; See the math definition.
|
class |
BreitWignerMeanSquare
Mean-square BreitWigner distribution; See the math definition.
|
class |
ChiSquare
ChiSquare distribution; See the math definition and
animated definition.
|
class |
DoubleUniform
Uniform distribution; Math definition and
animated definition.
|
class |
Empirical
Empirical distribution.
|
class |
EmpiricalWalker
Discrete Empirical distribution (pdf's can be specified).
|
class |
Exponential
Exponential Distribution (aka Negative Exponential Distribution); See the math definition
animated definition.
|
class |
ExponentialPower
Exponential Power distribution.
|
class |
Gamma
|
class |
Hyperbolic
Hyperbolic distribution.
|
class |
HyperGeometric
HyperGeometric distribution; See the math definition
The hypergeometric distribution with parameters N, n and
s is the probability distribution of the random variable X, whose
value is the number of successes in a sample of n items from a
population of size N that has s 'success' items and
N - s 'failure' items.
|
class |
Logarithmic
Logarithmic distribution.
|
class |
NegativeBinomial
Negative Binomial distribution; See the math definition.
|
class |
Normal
Normal (aka Gaussian) distribution; See the math definition and
animated definition.
|
class |
Poisson
Poisson distribution (quick); See the math definition and
animated definition.
|
class |
PoissonSlow
Poisson distribution; See the math definition and
animated definition.
|
class |
StudentT
StudentT distribution (aka T-distribution); See the math definition and
animated definition.
|
class |
VonMises
Von Mises distribution.
|
class |
Zeta
Zeta distribution.
|
Modifier and Type | Class and Description |
---|---|
class |
DoubleMersenneTwister
MersenneTwister (MT19937) is one of the strongest uniform pseudo-random
number generators known so far; at the same time it is quick.
|
class |
DoubleRandomEngine
Abstract base class for uniform pseudo-random number generating engines.
|
class |
DRand
Quick medium quality uniform pseudo-random number generator.
|
class |
MersenneTwister64
Same as MersenneTwister except that method raw() returns 64
bit random numbers instead of 32 bit random numbers.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractContinousFloatDistribution
Abstract base class for all continous distributions.
|
class |
AbstractFloatDistribution
Abstract base class for all random distributions.
|
class |
FloatUniform
Uniform distribution; Math definition and
animated definition.
|
Modifier and Type | Class and Description |
---|---|
class |
FloatMersenneTwister
MersenneTwister (MT19937) is one of the strongest uniform pseudo-random
number generators known so far; at the same time it is quick.
|
class |
FloatRandomEngine
Abstract base class for uniform pseudo-random number generating engines.
|
class |
FRand
Quick medium quality uniform pseudo-random number generator.
|
Jump to the Parallel Colt Homepage