- MathRandomNonZero
- MathMoments
- MathPowInt
- MathFactorial
- MathTrunc
- MathRound
- MathArctan2
- MathGamma
- MathGammaLog
- MathBeta
- MathBetaLog
- MathBetaIncomplete
- MathGammaIncomplete
- MathBinomialCoefficient
- MathBinomialCoefficientLog
- MathHypergeometric2F2
- MathSequence
- MathSequenceByCount
- MathReplicate
- MathReverse
- MathIdentical
- MathUnique
- MathQuickSortAscending
- MathQuickSortDescending
- MathQuickSort
- MathOrder
- MathBitwiseNot
- MathBitwiseAnd
- MathBitwiseOr
- MathBitwiseXor
- MathBitwiseShiftL
- MathBitwiseShiftR
- MathCumulativeSum
- MathCumulativeProduct
- MathCumulativeMin
- MathCumulativeMax
- MathSin
- MathCos
- MathTan
- MathArcsin
- MathArccos
- MathArctan
- MathSinPi
- MathCosPi
- MathTanPi
- MathAbs
- MathCeil
- MathFloor
- MathSqrt
- MathExp
- MathPow
- MathLog
- MathLog2
- MathLog10
- MathLog1p
- MathDifference
- MathSample
- MathTukeySummary
- MathRange
- MathMin
- MathMax
- MathSum
- MathProduct
- MathStandardDeviation
- MathAverageDeviation
- MathMedian
- MathMean
- MathVariance
- MathSkewness
- MathKurtosis
- MathExpm1
- MathSinh
- MathCosh
- MathTanh
- MathArcsinh
- MathArccosh
- MathArctanh
- MathSignif
- MathRank
- MathCorrelationPearson
- MathCorrelationSpearman
- MathCorrelationKendall
- MathQuantile
- MathProbabilityDensityEmpirical
- MathCumulativeDistributionEmpirical
Subfunctions
Group of functions that perform basic mathematical operations: calculation of the gamma function, beta function, factorial, exponential, logarithms with different bases, square root, etc.
They provide the ability to process both individual numeric values (real and integer) and arrays of such values (with output of the results to a separate or the original array).
Function |
Description |
---|---|
Returns a random number with a floating point in the range from 0.0 to 1.0. |
|
Calculates the first 4 moments of array elements: mean, variance, skewness, kurtosis. |
|
Raises a number to the specified integer power. |
|
Calculates the factorial of the specified integer. |
|
Calculates the integer part of the specified number or array elements. |
|
Rounds a number or an array of numbers to the specified number of decimal places. |
|
Calculates the angle, the tangent of which is equal to the ratio of the two specified numbers in the range of [-pi, pi]. |
|
Calculates the value of the gamma function. |
|
Calculates the logarithm of the gamma function. |
|
Calculates the value of the beta function. |
|
Calculates the logarithm of the beta function. |
|
Calculates the value of the incomplete beta function. |
|
Calculates the value of the incomplete gamma function. |
|
Calculates the binomial coefficient. |
|
Calculates the logarithm of the binomial coefficient. |
|
Calculates the value of the hypergeometric function. |
|
Generates a sequence based on values: the first element, the last element, the step of the sequence. |
|
Generates a sequence based on values: the first element, the last element, the number of elements in the sequence. |
|
Generates a repeating sequence of values. |
|
Generates an array of values with reverse order of elements. |
|
Compares two arrays of values and returns true if all elements match. |
|
Generates an array with unique values only. |
|
Function for sorting in ascending order. |
|
Function for sorting in descending order. |
|
Function for sorting. |
|
Generates an array with permutation according to order of the array elements after sorting. |
|
Calculates the result of bitwise NOT operation for array elements. |
|
Calculates the result of bitwise AND operation for elements of arrays. |
|
Calculates the result of bitwise OR operation for elements of arrays. |
|
Calculates the result of bitwise XOR operation for elements of arrays. |
|
Calculates the result of bitwise SHL operation for array elements. |
|
Calculates the result of bitwise SHR operation for array elements. |
|
Generates an array with the cumulative sums. |
|
Generates an array with the cumulative products. |
|
Generates an array with the cumulative minima. |
|
Generates an array with the cumulative maxima. |
|
Calculates the values of the sin(x) function for array elements. |
|
Calculates the values of the cos(x) function for array elements. |
|
Calculates the values of the tan(x) function for array elements. |
|
Calculates the values of the arcsin(x) function for array elements. |
|
Calculates the values of the arccos(x) function for array elements. |
|
Calculates the values of the arctan(x) function for array elements. |
|
Calculates the values of the sin(pi*x) function for array elements. |
|
Calculates the values of the cos(pi*x) function for array elements. |
|
Calculates the values of the tan(pi*x) function for array elements. |
|
Calculates the absolute values of array elements. |
|
Returns the nearest larger integers for array elements. |
|
Returns the nearest smaller integers for array elements. |
|
Calculates the square roots of array elements. |
|
Calculates the values of the exp(x) function for array elements. |
|
Calculates the values of the pow(x, power) function for array elements. |
|
Calculates the values of the log(x) function for array elements. |
|
Calculates the logarithm to the base 2 for the array elements. |
|
Calculates the logarithm to the base 10 for the array elements. |
|
Generates an array with element differences of y[i]=x[i+lag]-x[i]. |
|
Generates a random sample from the array elements. |
|
Calculates the Tukey's five-number summary for the array elements. |
|
Calculates the minima and maxima of array elements. |
|
Returns the minimum value of all array elements. |
|
Returns the maximum value of all array elements. |
|
Returns the sum of array elements. |
|
Returns the product of array elements. |
|
Calculates the standard deviation of array elements. |
|
Calculates the average absolute deviation of array elements. |
|
Calculates the median value of array elements. |
|
Calculates the mean values of array elements. |
|
Calculates the variance of the array elements. |
|
Calculates the skewness of the array elements. |
|
Calculates the kurtosis of the array elements. |
|
Calculates the values of the log(1+x) function for array elements. |
|
Calculates the values of the exp(x)-1 function for array elements. |
|
Calculates the values of the sinh(x) function for array elements. |
|
Calculates the values of the cosh(x) function for array elements. |
|
Calculates the values of the tanh(x) function for array elements. |
|
Calculates the values of the arcsinh(x) function for array elements. |
|
Calculates the values of the arccosh(x) function for array elements. |
|
Calculates the values of the arctanh(x) function for array elements. |
|
Rounds a value to the specified number of digits in the mantissa. |
|
Calculates the ranks of array elements. |
|
Calculates the Pearson's correlation coefficient. |
|
Calculates the Spearman's correlation coefficient. |
|
Calculates the Kendall's correlation coefficient. |
|
Calculates sample quantiles corresponding to the specified probabilities. |
|
Calculates the empirical probability density function for random values. |
|
Calculates the empirical cumulative distribution function for random values. |