mode_mult
All most-frequent values (multiple modes).
Syntax
Section titled “Syntax”v = mode_mult(number1, number2, ...)Description
Section titled “Description”Returns a vertical array of all values that occur with the highest frequency among the arguments. When there’s a single mode, the result has one element.
Example
Section titled “Example”mode_mult(1, 2, 2, 3, 3) % [2; 3]See also
Section titled “See also”mode_sngl— Most-frequent value (single mode).