Clear Filters
Clear Filters

HOW TO FIND normalized value of an array?

1 view (last 30 days)
ANCY
ANCY on 22 Jul 2014
Commented: SRI on 22 Jul 2014
I have 900 elements in an array . How can i find normalized value of that array?

Accepted Answer

SRI
SRI on 22 Jul 2014
A = imread('cameraman.tif');
Anorm = (A - min2(A))/(max2(A) - min2(A));
  1 Comment
SRI
SRI on 22 Jul 2014
To normalize a matrix such that all values fall in the range [0, 1] use

Sign in to comment.

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!