HOW TO FIND normalized value of an array?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have 900 elements in an array . How can i find normalized value of that array?
0 Kommentare
Akzeptierte Antwort
SRI
am 22 Jul. 2014
A = imread('cameraman.tif');
Anorm = (A - min2(A))/(max2(A) - min2(A));
1 Kommentar
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!