Functions

  • Computes the interquartile range (IQR) of a given vector of 128-bit signed integers.
  • Computes the interquartile range (IQR) of a given vector of 64-bit floating-point numbers.
  • Calculates the mean of a given vector of 128-bit signed integers.
  • Calculates the mean of a given vector of 64-bit floating-point numbers.
  • Calculates the median value of a vector containing 128-bit signed integers.
  • Calculates the median value of a given vector of 64-bit floating-point numbers.
  • Returns the product of all elements in a vector of 128-bit signed integers.
  • Computes the product of all elements in a given vector of floating-point numbers.
  • Computes the first (Q1), second (Q2), and third (Q3) quartiles of a given vector of 128-bit signed integers.
  • Returns a formatted string containing the first (Q1), second (Q2), and third (Q3) quartiles of a given vector of 64-bit floating-point numbers.
  • Calculates the range of a given vector of 128-bit signed integers, which is the difference between the maximum and minimum values in the vector.
  • Calculates the range of a given vector of 64-bit floating-point numbers, which is the difference between the maximum and minimum values in the vector.
  • Calculates the standard deviation of a given vector of 128-bit signed integers.
  • Calculates the standard deviation of a given vector of 64-bit floating-point numbers.
  • Returns the sum of all elements in a vector of 128-bit signed integers.
  • Computes the sum of all elements in a given vector of floating-point numbers.
  • Calculates the variance of a given vector of 128-bit signed integers.
  • Calculates the variance of a given vector of 64-bit floating-point numbers.