A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | AA | AB | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Original Table | New Columns | ||||||||||||||||||||||||||
2 | ||||||||||||||||||||||||||||
3 | # | Operator | args | Returns (old) | Type of function (old) | Returns | Type of Function | Wikipedia Link | https://dlmf.nist.gov/idx/ | |||||||||||||||||||
4 | 1 | **ABS** | 1 1 | abs (A) | Arithmetic | Absolute value of A | Arithmetic | https://en.wikipedia.org/wiki/Absolute_value | ||||||||||||||||||||
5 | 2 | **ACOS** | 1 1 | acos (A) | Trigonometric | Inverse cosine (result in radians) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
6 | 3 | **ACOSD** | 1 1 | acosd (A) | Trigonometric | Inverse cosine (result in degrees) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
7 | 4 | **ACOSH** | 1 1 | acosh (A) | Trigonometric | Inverse hyperbolic cosine | Calculus | https://en.wikipedia.org/wiki/Hyperbolic_functions | ||||||||||||||||||||
8 | 7 | **ACOT** | 1 1 | acot (A) | Trigonometric | Inverse of cotangent (result in radians) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
9 | 8 | **ACOTD** | 1 1 | acotd (A) | Trigonometric | Inverse of cotangent (result in degrees) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
10 | 5 | **ACSC** | 1 1 | acsc (A) | Trigonometric | Inverse of cosecant (result in radians) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
11 | 6 | **ACSCD** | 1 1 | acscd (A) | Trigonometric | Inverse of cosecant (result in degrees) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
12 | 9 | **ADD** | 2 1 | A + B | Arithmetic | A + B (addition) | Arithmetic | |||||||||||||||||||||
13 | 10 | **AND** | 2 1 | B if A == NaN, else A | Logical | B if A equals NaN, else A | Logic | |||||||||||||||||||||
14 | 11 | **ASEC** | 1 1 | asec (A) | Trigonometric | Inverse of secant (result in radians) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
15 | 12 | **ASECD** | 1 1 | asecd (A) | Trigonometric | Inverse of secant (result in degrees) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
16 | 13 | **ASIN** | 1 1 | asin (A) | Trigonometric | Inverse of sine (result in radians) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
17 | 14 | **ASIND** | 1 1 | asind (A) | Trigonometric | Inverse of sine (result in degrees) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
18 | 15 | **ASINH** | 1 1 | asinh (A) | Trigonometric | Inverse of hyperbolic sine | Calculus | https://en.wikipedia.org/wiki/Hyperbolic_functions | ||||||||||||||||||||
19 | 16 | **ATAN** | 1 1 | atan (A) | Trigonometric | Inverse of tangent (result in radians) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
20 | 18 | **ATAN2** | 2 1 | atan2 (A, B) | Trigonometric | Inverse of tangent of A/B (result in radians) | Calculus | https://en.wikipedia.org/wiki/Atan2 | ||||||||||||||||||||
21 | 19 | **ATAN2D** | 2 1 | atan2d (A, B) | Trigonometric | Inverse of tangent of A/B (result in degrees) | Calculus | https://en.wikipedia.org/wiki/Atan2 | ||||||||||||||||||||
22 | 17 | **ATAND** | 1 1 | atand (A) | Trigonometric | Inverse of tangent (result in degrees) | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
23 | 20 | **ATANH** | 1 1 | atanh (A) | Trigonometric | Inverse of hyperbolic tangent | Calculus | https://en.wikipedia.org/wiki/Inverse_trigonometric_functions | ||||||||||||||||||||
24 | 21 | **BCDF** | 3 1 | Binomial cumulative distribution function for p = A, n = B, and x = C | Probability distribution | Binomial cumulative distribution function for p = A, n = B, and x = C | Probability | https://en.wikipedia.org/wiki/Binomial_distribution | ||||||||||||||||||||
25 | 23 | **BEI** | 1 1 | Kelvin function bei (A) | Kelvin | Kelvin function bei (A) | Special Functions | |||||||||||||||||||||
26 | 24 | **BER** | 1 1 | Kelvin function ber (A) | Kelvin | Kelvin function ber (A) | Special Functions | |||||||||||||||||||||
27 | 25 | **BITAND** | 2 1 | A & B (bitwise AND operator) | Computer programming | A & B (bitwise AND operator) | Logic | https://en.wikipedia.org/wiki/Bitwise_operation#AND | ||||||||||||||||||||
28 | 26 | **BITLEFT** | 2 1 | A << B (bitwise left-shift operator) | Computer programming | A << B (bitwise left-shift operator) | Arithmetic | https://en.wikipedia.org/wiki/Bitwise_operation#Arithmetic_shift | ||||||||||||||||||||
29 | 27 | **BITNOT** | 1 1 | ~A (bitwise NOT operator, i.e., return two’s complement) | Computer programming | ~A (bitwise NOT operator, i.e., return two’s complement) | Logic | https://en.wikipedia.org/wiki/Bitwise_operation#NOT | ||||||||||||||||||||
30 | 28 | **BITOR** | 2 1 | A | B (bitwise OR operator) | Computer programming | A | B (bitwise OR operator) | Logic | https://en.wikipedia.org/wiki/Bitwise_operation#OR | ||||||||||||||||||||
31 | 29 | **BITRIGHT** | 2 1 | A >> B (bitwise right-shift operator) | Computer programming | A >> B (bitwise right-shift operator) | Arithmetic | https://en.wikipedia.org/wiki/Bitwise_operation#Arithmetic_shift | ||||||||||||||||||||
32 | 30 | **BITTEST** | 2 1 | 1 if bit B of A is set, else 0 (bitwise TEST operator) | Computer programming | 1 if bit B of A is set, else 0 (bitwise TEST operator) | Logic | |||||||||||||||||||||
33 | 31 | **BITXOR** | 2 1 | A ^ B (bitwise XOR operator) | Computer programming | A ^ B (bitwise XOR operator) | Logic | https://en.wikipedia.org/wiki/Bitwise_operation#XOR | ||||||||||||||||||||
34 | 22 | **BPDF** | 3 1 | Binomial probability density function for p = A, n = B, and x = C | Probability distribution | Binomial probability density function for p = A, n = B, and x = C | Probability | https://en.wikipedia.org/wiki/Binomial_distribution | ||||||||||||||||||||
35 | 32 | **CEIL** | 1 1 | ceil (A) (smallest integer >= A) | Logical | ceil (A) (smallest integer >= A) | Logic | https://en.wikipedia.org/wiki/Floor_and_ceiling_functions | ||||||||||||||||||||
36 | 34 | **CHICDF** | 2 1 | Chi-squared cumulative distribution function for chi2 = A and nu = B | Probability distribution | Chi-squared cumulative distribution function for chi2 = A and nu = B | Probability | |||||||||||||||||||||
37 | 33 | **CHICRIT** | 2 1 | Chi-squared distribution critical value for alpha = A and nu = B | Probability distribution | Chi-squared distribution critical value for alpha = A and nu = B | Probability | |||||||||||||||||||||
38 | 35 | **CHIPDF** | 2 1 | Chi-squared probability density function for chi2 = A and nu = B | Probability distribution | Chi-squared probability density function for chi2 = A and nu = B | Probability | |||||||||||||||||||||
39 | 36 | **COL** | 1 1 | Places column A on the stack | Stack operation | Places column A on the stack | Special Operators | |||||||||||||||||||||
40 | 37 | **COMB** | 2 1 | Combinations n_C_r, with n = A and r = B | Combinatorics | Combinations n_C_r, with n = A and r = B | Probability | |||||||||||||||||||||
41 | 38 | **CORRCOEFF** | 2 1 | Correlation coefficient r(A, B) | Statistical / Probabilistic | Correlation coefficient r(A, B) | Probability | |||||||||||||||||||||
42 | 39 | **COS** | 1 1 | cos (A) (A in radians) | Trigonometric | Cosine of A (A in radians) | Calculus | https://en.wikipedia.org/wiki/Trigonometry#Trigonometric_ratios | ||||||||||||||||||||
43 | 40 | **COSD** | 1 1 | cos (A) (A in degrees) | Trigonometric | Cosine of A (A in degrees) | Calculus | https://en.wikipedia.org/wiki/Trigonometry#Trigonometric_ratios | ||||||||||||||||||||
44 | 41 | **COSH** | 1 1 | cosh (A) | Trigonometric | Hyperbolic cosine of A | Calculus | https://en.wikipedia.org/wiki/Hyperbolic_functions | ||||||||||||||||||||
45 | 42 | **COT** | 1 1 | cot (A) (A in radians) | Trigonometric | Cotangent of A (A in radians) | Calculus | https://en.wikipedia.org/wiki/Trigonometry#Trigonometric_ratios | ||||||||||||||||||||
46 | 43 | **COTD** | 1 1 | cot (A) (A in degrees) | Trigonometric | Cotangent of A (A in degrees) | Calculus | https://en.wikipedia.org/wiki/Trigonometry#Trigonometric_ratios | ||||||||||||||||||||
47 | 44 | **CSC** | 1 1 | csc (A) (A in radians) | Trigonometric | Cosecant of A (A in radians) | Calculus | https://en.wikipedia.org/wiki/Trigonometry#Trigonometric_ratios | ||||||||||||||||||||
48 | 45 | **CSCD** | 1 1 | csc (A) (A in degrees) | Trigonometric | Cosecant of A (A in degrees) | Calculus | https://en.wikipedia.org/wiki/Trigonometry#Trigonometric_ratios | ||||||||||||||||||||
49 | 47 | **D2DT2** | 1 1 | d^2(A)/dt^2 2nd derivative | Calculus | d^2(A)/dt^2 2nd derivative | Calculus | |||||||||||||||||||||
50 | 48 | **D2R** | 1 1 | Converts degrees to radians | Convertion | Converts degrees to radians | Special Operators | |||||||||||||||||||||
51 | 46 | **DDT** | 1 1 | d(A)/dt Central 1st derivative | Calculus | d(A)/dt Central 1st derivative | Calculus | |||||||||||||||||||||
52 | 49 | **DEG2KM** | 1 1 | Converts spherical degrees to kilometers | Convertion | Converts spherical degrees to kilometers | Special Operators | |||||||||||||||||||||
53 | 50 | **DENAN** | 2 1 | Replace NaNs in A with values from B | Logical | Replace NaNs in A with values from B | Logic | |||||||||||||||||||||
54 | 52 | **DIFF** | 1 1 | Forward difference between adjacent elements of A (A[1]-A[0], A[2]-A[1], …, NaN) | Arithmetic | Forward difference between adjacent elements of A (A[1]-A[0], A[2]-A[1], …, NaN) | Arithmetic | |||||||||||||||||||||
55 | 51 | **DILOG** | 1 1 | dilog (A) | particle physics ? | Dilogarithm (Spence's) function | Special Functions | |||||||||||||||||||||
56 | 53 | **DIV** | 2 1 | A / B | Arithmetic | A / B (division) | Arithmetic | |||||||||||||||||||||
57 | 54 | **DUP** | 1 2 | Places duplicate of A on the stack | Stack operation | Places duplicate of A on the stack | Special Operators | |||||||||||||||||||||
58 | 55 | **ECDF** | 2 1 | Exponential cumulative distribution function for x = A and lambda = B | Probability distribution | Exponential cumulative distribution function for x = A and lambda = B | Probability | |||||||||||||||||||||
59 | 56 | **ECRIT** | 2 1 | Exponential distribution critical value for alpha = A and lambda = B | Probability distribution | Exponential distribution critical value for alpha = A and lambda = B | Probability | |||||||||||||||||||||
60 | 57 | **EPDF** | 2 1 | Exponential probability density function for x = A and lambda = B | Probability distribution | Exponential probability density function for x = A and lambda = B | Probability | |||||||||||||||||||||
61 | 61 | **EQ** | 2 1 | 1 if A == B, else 0 | Logical | 1 if A equals B, else 0 | Logic | |||||||||||||||||||||
62 | 58 | **ERF** | 1 1 | Error function erf (A) | Statistical / Probabilistic | Error function erf (A) | Probability | |||||||||||||||||||||
63 | 59 | **ERFC** | 1 1 | Complementary Error function erfc (A) | Statistical / Probabilistic | Complementary Error function erfc (A) | Probability | |||||||||||||||||||||
64 | 60 | **ERFINV** | 1 1 | Inverse error function of A | Statistical / Probabilistic | Inverse error function of A | Probability | |||||||||||||||||||||
65 | 62 | **EXCH** | 2 2 | Exchanges A and B on the stack | Stack operation | Exchanges A and B on the stack | Special Operators | |||||||||||||||||||||
66 | 63 | **EXP** | 1 1 | exp (A) | Arithmetic | E raised to a power. | Arithmetic | |||||||||||||||||||||
67 | 64 | **FACT** | 1 1 | A! (A factorial) | Arithmetic | A! (A factorial) | Arithmetic | https://en.wikipedia.org/wiki/Factorial | ||||||||||||||||||||
68 | 65 | **FCDF** | 3 1 | F cumulative distribution function for F = A, nu1 = B, and nu2 = C | Probability distribution | F cumulative distribution function for F = A, nu1 = B, and nu2 = C | Probability | |||||||||||||||||||||
69 | 66 | **FCRIT** | 3 1 | F distribution critical value for alpha = A, nu1 = B, and nu2 = C | Probability distribution | F distribution critical value for alpha = A, nu1 = B, and nu2 = C | Probability | |||||||||||||||||||||
70 | 67 | **FLIPUD** | 1 1 | Reverse order of each column | Stack operation ? | Reverse order of each column | Special Operators | |||||||||||||||||||||
71 | 68 | **FLOOR** | 1 1 | floor (A) (greatest integer <= A) | Logical | greatest integer less than or equal to A | Logic | https://en.wikipedia.org/wiki/Floor_and_ceiling_functions | ||||||||||||||||||||
72 | 69 | **FMOD** | 2 1 | A % B (remainder after truncated division) | Arithmetic | A % B (remainder after truncated division) | Arithmetic | https://en.wikipedia.org/wiki/Remainder | ||||||||||||||||||||
73 | 70 | **FPDF** | 3 1 | F probability density function for F = A, nu1 = B, and nu2 = C | Probability distribution | F probability density function for F = A, nu1 = B, and nu2 = C | Probability | |||||||||||||||||||||
74 | 71 | **GE** | 2 1 | 1 if A >= B, else 0 | Logical | 1 if A >= (greater or equal than) B, else 0 | Logic | |||||||||||||||||||||
75 | 72 | **GT** | 2 1 | 1 if A > B, else 0 | Logical | 1 if A > (greater than) B, else 0 | Logic | |||||||||||||||||||||
76 | 73 | **HSV2LAB** | 3 3 | Convert h,s,v triplets to l,a,b triplets, with h = A (0-360), s = B and v = C (0-1) | Convertion | Convert h,s,v triplets to l,a,b triplets, with h = A (0-360), s = B and v = C (0-1) | Special Operators | |||||||||||||||||||||
77 | 74 | **HSV2RGB** | 3 3 | Convert h,s,v triplets to r,g,b triplets, with h = A (0-360), s = B and v = C (0-1) | Convertion | Convert h,s,v triplets to r,g,b triplets, with h = A (0-360), s = B and v = C (0-1) | Special Operators | |||||||||||||||||||||
78 | 75 | **HSV2XYZ** | 3 3 | Convert h,s,v triplets to x,t,z triplets, with h = A (0-360), s = B and v = C (0-1) | Convertion | Convert h,s,v triplets to x,t,z triplets, with h = A (0-360), s = B and v = C (0-1) | Special Operators | |||||||||||||||||||||
79 | 76 | **HYPOT** | 2 1 | hypot (A, B) = sqrt (A*A + B*B) | Trigonometric | Hypotenuse of a right triangle of sides A and B (= sqrt (A^2 + B^2)) | Calculus | https://en.wikipedia.org/wiki/Hypotenuse | ||||||||||||||||||||
80 | 77 | **I0** | 1 1 | Modified Bessel function of A (1st kind, order 0) | Bessel | Modified Bessel function of A (1st kind, order 0) | Special Functions | |||||||||||||||||||||
81 | 78 | **I1** | 1 1 | Modified Bessel function of A (1st kind, order 1) | Bessel | Modified Bessel function of A (1st kind, order 1) | Special Functions | |||||||||||||||||||||
82 | 79 | **IFELSE** | 3 1 | B if A != 0, else C | Logical | B if A is not equal to 0, else C | Logic | |||||||||||||||||||||
83 | 80 | **IN** | 2 1 | Modified Bessel function of A (1st kind, order B) | Bessel | Modified Bessel function of A (1st kind, order B) | Special Functions | |||||||||||||||||||||
84 | 81 | **INRANGE** | 3 1 | 1 if B <= A <= C, else 0 | Logical | 1 if B <= A <= C, else 0 | Logic | |||||||||||||||||||||
85 | 82 | **INT** | 1 1 | Numerically integrate A | Calculus | Numerically integrate A | Calculus | |||||||||||||||||||||
86 | 83 | **INV** | 1 1 | 1 / A | Arithmetic | Invert (1/A) | Arithmetic | |||||||||||||||||||||
87 | 84 | **ISFINITE** | 1 1 | 1 if A is finite, else 0 | Logical | 1 if A is finite, else 0 | Logic | |||||||||||||||||||||
88 | 85 | **ISNAN** | 1 1 | 1 if A == NaN, else 0 | Logical | 1 if A equals NaN, else 0 | Logic | |||||||||||||||||||||
89 | 86 | **J0** | 1 1 | Bessel function of A (1st kind, order 0) | Bessel | Bessel function of A (1st kind, order 0) | Special Functions | |||||||||||||||||||||
90 | 87 | **J1** | 1 1 | Bessel function of A (1st kind, order 1) | Bessel | Bessel function of A (1st kind, order 1) | Special Functions | |||||||||||||||||||||
91 | 88 | **JN** | 2 1 | Bessel function of A (1st kind, order B) | Bessel | Bessel function of A (1st kind, order B) | Special Functions | |||||||||||||||||||||
92 | 89 | **K0** | 1 1 | Modified Kelvin function of A (2nd kind, order 0) | Kelvin | Modified Kelvin function of A (2nd kind, order 0) | Special Functions | |||||||||||||||||||||
93 | 90 | **K1** | 1 1 | Modified Bessel function of A (2nd kind, order 1) | Bessel | Modified Bessel function of A (2nd kind, order 1) | Special Functions | |||||||||||||||||||||
94 | 93 | **KEI** | 1 1 | Kelvin function kei (A) | Kelvin | Kelvin function kei (A) | Special Functions | |||||||||||||||||||||
95 | 94 | **KER** | 1 1 | Kelvin function ker (A) | Kelvin | Kelvin function ker (A) | Special Functions | |||||||||||||||||||||
96 | 91 | **KM2DEG** | 1 1 | Converts kilometers to spherical degrees | Convertion | Converts kilometers to spherical degrees | Special Operators | |||||||||||||||||||||
97 | 92 | **KN** | 2 1 | Modified Bessel function of A (2nd kind, order B) | Bessel | Modified Bessel function of A (2nd kind, order B) | Special Functions | |||||||||||||||||||||
98 | 95 | **KURT** | 1 1 | Kurtosis of A | Statistical | Kurtosis of A | Probability | |||||||||||||||||||||
99 | 96 | **LAB2HSV** | 3 3 | Convert l,a,b triplets to h,s,v triplets | Convertion | Convert l,a,b triplets to h,s,v triplets | Special Operators | |||||||||||||||||||||
100 | 97 | **LAB2RGB** | 3 3 | Convert l,a,b triplets to r,g,b triplets | Convertion | Convert l,a,b triplets to r,g,b triplets | Special Operators |