mode - Most frequent values in array - MATLAB (original) (raw)

Most frequent values in array

Syntax

Description

[M](#btsadh7-1-M) = mode([A](#btsadh7-1-A)) returns the sample mode of A, which is the most frequently occurring value in A. When there are multiple values occurring equally frequently, mode returns the smallest of those values. For complex inputs, the smallest value is the first value in a sorted list.

example

[M](#btsadh7-1-M) = mode([A](#btsadh7-1-A),`'all'`) computes the mode over all elements of A. This syntax is valid for MATLAB® versions R2018b and later.

example

[M](#btsadh7-1-M) = mode([A](#btsadh7-1-A),[dim](#btsadh7-1-dim)) returns the mode of elements along dimension dim. For example, if A is a matrix, then mode(A,2) is a column vector containing the most frequent value of each row

example

[M](#btsadh7-1-M) = mode([A](#btsadh7-1-A),[vecdim](#mw%5F1048924e-37a4-4b22-b32d-2c375ffb86be)) computes the mode based on the dimensions specified in the vectorvecdim. For example, if A is a matrix, then mode(A,[1 2]) is the mode over all elements inA, since every element of a matrix is contained in the array slice defined by dimensions 1 and 2.

example

[[M](#btsadh7-1-M),[F](#btsadh7-1-F)] = mode(___) also returns a frequency arrayF, using any of the input arguments in the previous syntaxes.F is the same size as M, and each element of F represents the number of occurrences of the corresponding element of M.

example

[[M](#btsadh7-1-M),[F](#btsadh7-1-F),[C](#btsadh7-1-C)] = mode(___) also returns a cell array C of the same size as M and F. Each element ofC is a sorted vector of all values that have the same frequency as the corresponding element of M.

example

Examples

collapse all

Define a 3-by-4 matrix.

A = [3 3 1 4; 0 0 1 1; 0 1 2 4]

A = 3×4

 3     3     1     4
 0     0     1     1
 0     1     2     4

Find the most frequent value of each column.

Define a 3-by-4 matrix.

A = [3 3 1 4; 0 0 1 1; 0 1 2 4]

A = 3×4

 3     3     1     4
 0     0     1     1
 0     1     2     4

Find the most frequent value of each row.

Create a 1-by-3-by-4 array of integers between 1 and 10.

rng('default') A = randi(10,[1,3,4])

A = A(:,:,1) =

 9    10     2

A(:,:,2) =

10     7     1

A(:,:,3) =

 3     6    10

A(:,:,4) =

10     2    10

Find the most frequent values of this 3-D array along the second dimension.

M = M(:,:,1) =

 2

M(:,:,2) =

 1

M(:,:,3) =

 3

M(:,:,4) =

10

This operation produces a 1-by-1-by-4 array by finding the most frequent value along the second dimension. The size of the second dimension reduces to 1.

Compute the mode along the first dimension of A.

M = mode(A,1); isequal(A,M)

This returns the same array as A because the size of the first dimension is 1.

Create a 3-D array and compute the mode over each page of data (rows and columns).

A(:,:,1) = [2 4; 2 1]; A(:,:,2) = [6 2; 3 3]; A(:,:,3) = [4 4; 7 4]; M1 = mode(A,[1 2])

M1 = M1(:,:,1) =

 2

M1(:,:,2) =

 3

M1(:,:,3) =

 4

Starting in R2018b, to compute the mode over all dimensions of an array, you can either specify each dimension in the vector dimension argument, or use the 'all' option.

Define a 3-by-4 matrix.

A = [3 3 1 4; 0 0 1 1; 0 1 2 4]

A = 3×4

 3     3     1     4
 0     0     1     1
 0     1     2     4

Find the most frequent value of each column, as well as how often it occurs.

F(1) is 2 since M(1) occurs twice in the first column.

Define a 3-by-4 matrix.

A = [3 3 1 4; 0 0 1 1; 0 1 2 4]

A = 3×4

 3     3     1     4
 0     0     1     1
 0     1     2     4

Find the most frequent value of each row, how often it occurs, and which values in that row occur with the same frequency.

C=3×1 cell array {[ 3]} {2×1 double} {4×1 double}

C{2} is the 2-by-1 vector [0;1] since values 0 and 1 in the second row occur with frequency F(2).

C{3} is the 4-by-1 vector [0;1;2;4] since all values in the third row occur with frequency F(3).

Define a 1-by-4 vector of 16-bit unsigned integers.

rng('default') A = randi(10,[1,4],'uint16')

A = 1×4 uint16 row vector

9   10    2   10

Find the most frequent value, as well as the number of times it occurs.

M is the same class as the input, A.

Input Arguments

collapse all

Input array, specified as a vector, matrix, multidimensional array, table, or timetable. A can be a numeric array, categorical array, datetime array, duration array, or a table or timetable whose variables have any of those data types.

NaN or NaT (Not a Time) values in the input array, A, are ignored. Undefined values in categorical arrays are similar to NaNs in numeric arrays.

Dimension to operate along, specified as a positive integer scalar. If you do not specify the dimension, then the default is the first array dimension whose size does not equal 1.

Dimension dim indicates the dimension whose length reduces to 1. The size(M,dim) is1, while the sizes of all other dimensions remain the same.

Consider an m-by-n input matrix,A:

mode returns A ifdim is greater thanndims(A).

Vector of dimensions, specified as a vector of positive integers. Each element represents a dimension of the input array. The lengths of the output in the specified operating dimensions are 1, while the others remain the same.

Consider a 2-by-3-by-3 input array, A. Thenmode(A,[1 2]) returns a 1-by-1-by-3 array whose elements are the modes of each page of A.

Mapping of a 2-by-3-by-3 input array to a 1-by-1-by-3 output array

Output Arguments

collapse all

Most frequent values returned as a scalar, vector, matrix, multidimensional array, or table. When there are multiple values occurring equally frequently, mode returns the smallest of those values. For complex inputs, this is taken to be the first value in a sorted list of values.

If the input A is an array, then the outputM is an array of the same class.

If A is a table or timetable, then M is a one-row table. If the variables of A have units, then the variables of M have the same units.

Frequency array returned as a scalar, vector, matrix, multidimensional array or table. The size of F is the same as the size ofM, and each element of F represents the number of occurrences of the corresponding element ofM.

If the input A is an array, then the outputF is a double array.

If A is a table or timetable, then F is a one-row table. If the variables of A have units, then the variables of F do not have those units.

Most frequent values with multiplicity returned as a cell array or table. The size of C is the same as the size ofM and F, and each element ofC is a sorted column vector of all values that have the same frequency as the corresponding element ofM.

If the input A is a table or timetable, then the outputC is a one-row table. Each variable ofC has a cell array that contains a sorted column vector of all values that have the same frequency as the corresponding element of M. If the variables of A have units, then the variables of C have the same units.

Tips

Extended Capabilities

expand all

Usage notes and limitations:

The mode function fully supports GPU arrays. To run the function on a GPU, specify the input data as a gpuArray (Parallel Computing Toolbox). For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).

Version History

Introduced before R2006a

expand all

The mode function can calculate on all variables within a table or timetable without indexing to access those variables. All variables must have data types that support the calculation. For more information, see Direct Calculations on Tables and Timetables.