Absolute value of x
Magnitude of vector x
Returns 1 for positives, -1 for negatives, 0 otherwise.
Apply the aggregate function func(a,b)
for the array
.
Returns true if all array
elements are true.
Returns true if tester function func(x)
returns true for all elements of the array
.
Returns true if at least one element is true.
Returns true if tester function func(x)
returns true for at least one element of the array
.
Concatenate array0 and array1.
Returns whether the array
contains val
.
Count specific elements in the array
using a tester function func(x)
.
Returns the difference set of the two arrays.
Extends the array
using converter function func(array)
.
Filter the array
using a tester function func(x)
.
Returns the index of the first element in the array
whose value matches val
.
Returns the product set of the two arrays.
Returns the index of the last element in the array
whose value matches val
.
Length of array
Map the array
using a converter function func(x)
.
Returns an array consists of sequence of numbers greater than or equal to start
and less than stop
.
Returns an array consists of sequence of numbers greater than or equal to start
and less than stop
with common difference step
.
Returns an array consists of sequence of numbers greater than or equal to start
and less than or equal to stop
.
Returns an array consists of sequence of numbers greater than or equal to start
and less than or equal to stop
with common difference step
.
Reverses the order of elements of array
Sort the array
.
Sort the array
using a evaluator function func(x)
.
Returns the union of the two arrays.
Returns an array of unique elements.
Return unique elements using evaluator function func(x)
.
Raises an error if the x
is false.
Number of bits of x
that have the value 1.
Packs array values at b-bit intervals.
Reverses the lower b
bits of x
.
Reverses the lower b
bytes of x
.
Rotates the lower b
bits of x
to the left by 1 bit.
Rotates the lower b
bits of x
to the left by n
bits.
Rotates the lower b
bits of x
to the right by 1 bit.
Rotates the lower b
bits of x
to the right by n
bits.
Swaps even and odd bytes of x
.
Reverses the order of each 4 bytes of x
.
Reverses the byte-order of x
.
Swaps the nibble of each byte of x
.
Divide the value of x
into n
elements of b
bit width.
Separate the value of x
into n
elements of b
bit width.
Converts string s
to an array of character code.
Rational fraction approximation of x
.
Rational fraction approximation of x
.
Converts the x
to a real number.
Converts array
to a string.
Convert from H, S, L to 24 bit color RGB value.
Converts from H, S, V to 24 bit RGB color value.
Packs the 3 values to an RGB565 color.
Generates 24 bit color value from R, G, B.
Converts the rgb
to web-color representation.
Converts the 24 bit RGB color value to HSL.
Converts the 24 bit RGB color value to HSV.
Converts R, G, B to 24 bit YUV color.
Converts 24bit RGB color to 24 bit YUV.
Upconverts RGB565 color to RGB888.
Downconverts RGB888 color to RGB565.
Unpacks the RGB565 color to 3 values.
Converts Y, U, V to 24 bit RGB color.
Converts the 24 bit YUV color to 24 bit RGB.
Converts from days to epoch time.
Converts from hours to epoch time.
Converts from minutes to epoch time.
Converts from seconds to epoch time.
Current epoch time
Converts from epoch time to days.
Converts from epoch time to hours.
Converts from epoch time to minutes.
Converts from epoch time to seconds.
Decode Base64 to string.
Decode Base64 to byte-array.
Encode string to Base64.
Encode byte-array to Base64.
Unescape URL string.
Escape URL string.
Decode UTF8 byte sequence.
Encode str
to UTF8 byte sequence.
Nearest E-series value greater than or equal to x
(series
=3, 6, 12, 24, 48, 96, or 192).
Nearest E-series value less than or equal to x
(series
=3, 6, 12, 24, 48, 96, or 192).
Two E-series resistor values that provide the closest value to the voltage divider ratio x
(series
=3, 6, 12, 24, 48, 96, or 192).
Nearest E-series value (series
=3, 6, 12, 24, 48, 96, or 192).
Ceiling of common logarithm of x
Ceiling of binary logarithm of x
Exponential of x
Logarithm of x
Common logarithm of x
Binary logarithm of x
y
power of x
Square root of x
Greatest common divisor of elements of the array
.
Least common multiple of elements of the array
.
Converts the value from gray-code to binary.
Converts the value from binary to gray-code.
Maximum value of elements of the array
Minimum value of elements of the array
Checks ECC code (b
: data width, ecc
: ECC code, x
: data). Returns: 0 = no error, positive value = position of 1-bit error, negative value = 2-bit error.
Generates ECC code (b
: data width, x
: data).
Width of ECC for b
-bit data.
Odd parity of x
.
Reduction XOR of x
(Same as even parity).
Plot graph of func(x)
.
Returns whether x
is prime or not.
x
-th prime number.
Returns prime factors of x
.
Generates a random value between 0.0 and 1.0.
Generates a random value between min and max.
Generates a 32bit random integer.
Generates a 64bit random integer.
Converts x
to binary representation.
Converts x
to character representation.
Converts x
to datetime representation.
Converts x
to decimal representation.
Converts x
to hexdecimal representation.
Converts x
to binary prefixed representation.
Converts x
to octal representation.
Converts x
to SI prefixed representation.
Smallest integral value greater than or equal to x
Largest integral value less than or equal to x
Nearest integer to x
Integral part of x
Returns solutions of func(x)=0
using Newton's Method.
Returns solutions of func(x)=0
using Newton's Method with initial value in array
.
Returns solutions of func(x)=0
using Newton's Method with initial value between min
and max
.
Whether string s
ends with string key
or not
Concatenates all elements of array
using string sep
as delimiter.
Replaces the string old
in string s
with the string new
.
Splits string s
using string sep
as delimiter.
Whether string s
starts with string key
or not
Converts alphabetic characters in string s
to lowercase.
Converts alphabetic characters in string s
to uppercase.
Removes whitespace characters from both ends of string s
.
Removes whitespace characters from far end of string s
.
Removes whitespace characters from near end of string s
.
Arithmetic mean of elements of the array
.
Geometric mean of elements of the array
.
Harmonic mean of elements of the array
.
Inverse of the sum of the inverses. Composite resistance of parallel resistors.
Sum of elements of the array
.
Arccosine
Arcsine
Arctangent
Arctangent of a / b
Cosine
Hyperbolic cosine
Sine
Hyperbolic sine
Tangent
Hyperbolic tangent