miniΒΆ

The mini function finds the index of the smallest element of a vector, or returns an index vector with indices of the smallest element of each matrix column.

r = mini(m)

Return Value

r is a scalar, if m is a vector. r is a row vector if m is a matrix. The column vector contains the indices of the smallest elements of each matrix column.

Parameters

m

m is a real, complex or string matrix.

Comment

For complex matrices m, the function compares the absolute values.

id-6419