Normalizing to the maximum value
Mostrar comentarios más antiguos
I have a 48X128 matrix. I want to normalize each row to the maximum value in that row. What function will achieve this?
Respuestas (1)
Sulaymon Eshkabilov
el 3 de Feb. de 2023
Editada: Sulaymon Eshkabilov
el 3 de Feb. de 2023
Use normalize() to normalize each row or use simple matrix operation to obtain the values of matrix elements to be between [0 .. 1]:
A = randi(10, 7 , 5) % Data
An = normalize(A,2) % Normalize each row
ANor = A./max(A(1:end,:)) % Normalize wi.r.t. max value of each row
1 comentario
Star Strider
el 3 de Feb. de 2023
Categorías
Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!