| public static |
abs abs<NUMBER_TYPE>(value as NUMBER_TYPE) as NUMBER_TYPE:
|
Returns the absolute value of a scalar number. |
| public static |
absabs<NUMBER_TYPE>(values as NDArray<NUMBER_TYPE>) as NDArray<NUMBER_TYPE>: |
Returns the element-wise absolute value of an array. |
| public static |
acos |
Returns the arccosine of a value. |
| public static |
acos |
No summary. |
| public static |
acos |
No summary. |
| public static |
acos |
No summary. |
| public static |
acos |
No summary. |
| public static |
acos |
No summary. |
| public static |
acos acos<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
acos |
Returns the element-wise arccosine of an array. |
| public static |
acosh |
Returns the inverse hyperbolic cosine of a value. |
| public static |
acosh |
No summary. |
| public static |
acosh |
No summary. |
| public static |
acosh |
No summary. |
| public static |
acosh |
No summary. |
| public static |
acosh |
No summary. |
| public static |
acosh acosh<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
asin |
Returns the arcsine of a value. |
| public static |
asin |
No summary. |
| public static |
asin |
No summary. |
| public static |
asin |
No summary. |
| public static |
asin |
No summary. |
| public static |
asin |
No summary. |
| public static |
asin asin<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
asin |
Returns the element-wise arcsine of an array. |
| public static |
asinh |
Returns the inverse hyperbolic sine of a value. |
| public static |
asinh |
No summary. |
| public static |
asinh |
No summary. |
| public static |
asinh |
No summary. |
| public static |
asinh |
No summary. |
| public static |
asinh |
No summary. |
| public static |
asinh asinh<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
atan |
Returns the arctangent of a value. |
| public static |
atan |
No summary. |
| public static |
atan |
No summary. |
| public static |
atan |
No summary. |
| public static |
atan |
No summary. |
| public static |
atan |
No summary. |
| public static |
atan atan<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
atan |
Returns the element-wise arctangent of an array. |
| public static |
atan2 atan2<FLOAT_TYPE>(y as FLOAT_TYPE, x as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns `atan2(y, x)` in radians. |
| public static |
atan2 |
Returns the element-wise `atan2(y, x)` for two arrays. |
| public static |
atan2 |
Returns the element-wise `atan2(y, x)` between an array and a scalar. |
| public static |
atanh |
Returns the inverse hyperbolic tangent of a value. |
| public static |
atanh |
No summary. |
| public static |
atanh |
No summary. |
| public static |
atanh |
No summary. |
| public static |
atanh |
No summary. |
| public static |
atanh |
No summary. |
| public static |
atanh atanh<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
cbrt cbrt<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns the cube root of a floating-point value. |
| public static |
cbrt |
Returns the element-wise cube root of an array. |
| public static |
ceil ceil<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns the smallest integer greater than or equal to `value`, preserved
in the same floating-point type. |
| public static |
ceilceil<NUMBER_TYPE>(values as NDArray<NUMBER_TYPE>) as NDArray<NUMBER_TYPE>: |
Applies `ceil` element-wise on an array while preserving the array element type. |
| public static |
cos |
Returns the cosine of an angle in radians. |
| public static |
cos |
No summary. |
| public static |
cos |
No summary. |
| public static |
cos |
No summary. |
| public static |
cos |
No summary. |
| public static |
cos |
No summary. |
| public static |
cos cos<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
cos |
Returns the element-wise cosine of an array expressed in radians. |
| public static |
cosh |
Returns the hyperbolic cosine of a value. |
| public static |
cosh |
No summary. |
| public static |
cosh |
No summary. |
| public static |
cosh |
No summary. |
| public static |
cosh |
No summary. |
| public static |
cosh |
No summary. |
| public static |
cosh cosh<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
cosh |
Returns the element-wise hyperbolic cosine of an array. |
| public static |
degrees degrees<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Converts radians to degrees. |
| public static |
degrees |
Converts the elements of an array from radians to degrees. |
| public static |
exp |
Returns `e` raised to the specified power. |
| public static |
exp |
No summary. |
| public static |
exp |
No summary. |
| public static |
exp |
No summary. |
| public static |
exp |
No summary. |
| public static |
exp |
No summary. |
| public static |
exp exp<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
exp |
Returns the element-wise exponential of an array. |
| public static |
exp2 exp2<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns `2` raised to the specified power. |
| public static |
exp2 |
Returns the element-wise power of two of an array. |
| public static |
expm1 expm1<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns `e^value - 1`. |
| public static |
expm1 |
Returns the element-wise `e^value - 1` of an array. |
| public static |
fact |
No summary. |
| public static |
fact |
No summary. |
| public static |
fact |
No summary. |
| public static |
fact |
No summary. |
| public static |
fact fact<INT_TYPE>(value as INT_TYPE) as INT_TYPE:
|
Computes the factorial of an integer. |
| public static |
floor floor<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns the greatest integer less than or equal to `value`, preserved in
the same floating-point type. |
| public static |
floorfloor<NUMBER_TYPE>(values as NDArray<NUMBER_TYPE>) as NDArray<NUMBER_TYPE>: |
Applies `floor` element-wise on an array while preserving the array element type. |
| public static |
fmod fmod<FLOAT_TYPE>(value as FLOAT_TYPE, divisor as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns the floating-point remainder of the division. |
| public static |
fmod |
Returns the element-wise floating-point remainder of two arrays. |
| public static |
fmod |
Returns the element-wise floating-point remainder of an array by a scalar. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
Computes the greatest common divisor of one or more integers. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd |
No summary. |
| public static |
gcd gcd<INT_TYPE>(first as INT_TYPE, second as INT_TYPE, values... as INT_TYPE) as INT_TYPE:
|
Computes the greatest common divisor of one or more integers. |
| public static |
gcd gcd<INT_TYPE>(left as INT_TYPE, right as INT_TYPE) as INT_TYPE:
|
No summary. |
| public static |
hypot hypot<FLOAT_TYPE>(x as FLOAT_TYPE, y as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns the Euclidean distance `sqrt(x*x + y*y)`. |
| public static |
hypot |
Returns the element-wise Euclidean distance of two arrays. |
| public static |
hypot |
Returns the element-wise Euclidean distance between an array and a scalar. |
| public static |
log |
Returns the natural logarithm of a value. |
| public static |
log |
No summary. |
| public static |
log |
No summary. |
| public static |
log |
No summary. |
| public static |
log |
No summary. |
| public static |
log |
No summary. |
| public static |
log log<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
loglog<INT_TYPE>(value as INT_TYPE) as Double: |
No summary. |
| public static |
log |
Returns the element-wise natural logarithm of an array. |
| public static |
log10 log10<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns the base-10 logarithm of a value. |
| public static |
log10 |
Returns the element-wise base-10 logarithm of an array. |
| public static |
log1p log1p<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns `log(1 + value)` with improved precision near zero. |
| public static |
log1p |
Returns the element-wise `log(1 + value)` of an array. |
| public static |
log2 log2<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns the base-2 logarithm of a value. |
| public static |
log2 |
Returns the element-wise base-2 logarithm of an array. |
| public static |
pow |
Raises a floating-point value to the specified power. |
| public static |
pow |
No summary. |
| public static |
pow |
No summary. |
| public static |
pow |
No summary. |
| public static |
pow |
No summary. |
| public static |
pow |
No summary. |
| public static |
pow pow<FLOAT_TYPE>(value as FLOAT_TYPE, power as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
pow |
Raises each element of an array to the matching powers of another array. |
| public static |
pow |
Raises each element of an array to the specified scalar power. |
| public static |
radians radians<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Converts degrees to radians. |
| public static |
radians |
Converts the elements of an array from degrees to radians. |
| public static |
round round<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Rounds a floating-point value to the nearest integer value, returned in
the same floating-point type. |
| public static |
roundround<NUMBER_TYPE>(values as NDArray<NUMBER_TYPE>) as NDArray<NUMBER_TYPE>: |
Rounds each element of an array while preserving the array element type. |
| public static |
sin |
Returns the sine of an angle in radians. |
| public static |
sin |
No summary. |
| public static |
sin |
No summary. |
| public static |
sin |
No summary. |
| public static |
sin |
No summary. |
| public static |
sin |
No summary. |
| public static |
sin sin<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
sin |
Returns the element-wise sine of an array expressed in radians. |
| public static |
sinh |
Returns the hyperbolic sine of a value. |
| public static |
sinh |
No summary. |
| public static |
sinh |
No summary. |
| public static |
sinh |
No summary. |
| public static |
sinh |
No summary. |
| public static |
sinh |
No summary. |
| public static |
sinh sinh<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
sinh |
Returns the element-wise hyperbolic sine of an array. |
| public static |
sqrt |
Returns the square root of a floating-point value. |
| public static |
sqrt |
No summary. |
| public static |
sqrt sqrt<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
sqrt |
Returns the element-wise square root of an array. |
| public static |
tan |
Returns the tangent of an angle in radians. |
| public static |
tan |
No summary. |
| public static |
tan |
No summary. |
| public static |
tan |
No summary. |
| public static |
tan |
No summary. |
| public static |
tan |
No summary. |
| public static |
tan tan<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
tan |
Returns the element-wise tangent of an array expressed in radians. |
| public static |
tanh |
Returns the hyperbolic tangent of a value. |
| public static |
tanh |
No summary. |
| public static |
tanh |
No summary. |
| public static |
tanh |
No summary. |
| public static |
tanh |
No summary. |
| public static |
tanh |
No summary. |
| public static |
tanh tanh<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
No summary. |
| public static |
tanh |
Returns the element-wise hyperbolic tangent of an array. |
| public static |
trunc trunc<FLOAT_TYPE>(value as FLOAT_TYPE) as FLOAT_TYPE:
|
Returns the integral part of `value`, preserved in the same
floating-point type. |
| public static |
trunctrunc<NUMBER_TYPE>(values as NDArray<NUMBER_TYPE>) as NDArray<NUMBER_TYPE>: |
Applies `trunc` element-wise on an array while preserving the array element type. |