min:

Synopsis: Compute the minimum value(s) in a matrix or two matrices.

Syntax:	min ( A )
	min ( A , B )

Description:

	Min returns the minimum value(s) contained in the matrix A. If
	the argument is a vector, then the smallest value is returned.
	If A is a MxN matrix, then a row-vector of N columns is
	returned containing the minimum value from each column of A.

	If min is used with two arguments, then min returns a matrix
	the same size as A and B filled with the smallest elements
	from A and B.

	When matrix elements are complex the absolute value is used
	for comparison purposes.

See Also: mini, max, maxi
