A
C
D
E
F
G
H
I
K
L
M
O
P
Q
R
S
T
U
V
W
_
L
- log() - function in org.jetbrains.bio.viktor.F64Array
- A copying version of logInPlace.
- log() - function in org.jetbrains.bio.viktor.F64FlatArray
- A copying version of logInPlace.
- log1p() - function in org.jetbrains.bio.viktor.F64Array
- A copying version of log1pInPlace.
- log1p() - function in org.jetbrains.bio.viktor.F64FlatArray
- A copying version of log1pInPlace.
- log1pInPlace() - function in org.jetbrains.bio.viktor.F64Array
- Replaces each element x of this array with log(1 + x).
- log1pInPlace() - function in org.jetbrains.bio.viktor.F64Array
- Replaces each element x of this array with log(1 + x).
- logAddExp(F64Array) - function in org.jetbrains.bio.viktor.F64Array
- Computes elementwise
in a numerically stable way.log(exp(this[*i]) + exp(other[*i])) - logAddExp(F64Array) - function in org.jetbrains.bio.viktor.F64FlatArray
- Computes elementwise
in a numerically stable way.log(exp(this[*i]) + exp(other[*i])) - logAddExp(Double,Double) - function in org.jetbrains.bio.viktor
- Evaluates log(exp(a) + exp(b)) using the following trick
assuming a >= b.log(exp(a) + exp(b)) = a + log(1 + exp(b - a)) - logAddExpAssign(F64Array) - function in org.jetbrains.bio.viktor.F64Array
- Plus-assign for values stored as logarithms.
- logAddExpAssign(F64Array) - function in org.jetbrains.bio.viktor.F64FlatArray
- Plus-assign for values stored as logarithms.
- logInPlace() - function in org.jetbrains.bio.viktor.F64Array
- Replaces each element x of this array with its natural logarithm log(x).
- logInPlace() - function in org.jetbrains.bio.viktor.F64Array
- Replaces each element x of this array with its natural logarithm log(x).
- logRescale() - function in org.jetbrains.bio.viktor.F64Array
- Rescales the elements so that the sum of their exponents is 1.0.
- logRescale() - function in org.jetbrains.bio.viktor.F64Array
- Rescales the elements so that the sum of their exponents is 1.0.
- logSumExp() - function in org.jetbrains.bio.viktor.F64Array
- Computes
in a numerically stable way.log(Σ_x exp(x)) - logSumExp() - function in org.jetbrains.bio.viktor.F64FlatArray
- Computes
in a numerically stable way.log(Σ_x exp(x)) - logSumExp(Sequence) - function in org.jetbrains.bio.viktor