The largest and smallest numeric value in the array

I have some of the numerical values in the matrix containing the image. How I can find the largest and smallest numeric value in the array?

 Accepted Answer

max() and min()

2 Comments

and
max( data(:) )
min( data(:) )
if your data is n-dimensional.

Sign in to comment.

More Answers (0)

Asked:

on 15 Sep 2014

Commented:

on 16 Sep 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!