bounds(A)

Returns the minimum and maximum values of array A.


See also min max 


Example


A=(14.5, 13.4, 14.1, 15.1)

( 14.5 13.4 14.1 15.1 )


bounds(A)

( 13.4 15.1 )