min(A) is a reduction operator. If A is a matrix, it returns a row vector containing the minimum values from each row of A. If A is a row vector or scalar, it returns a scalar containing the minimum value in A. min(A,B) returns an array containing the element-by-element minimums. If both arguments are vectors or matrices, they must be the same size.