Borrar filtros
Borrar filtros

How to normalize data between 0 and 1

148 visualizaciones (últimos 30 días)
Med Future
Med Future el 3 de Mzo. de 2022
Comentada: Image Analyst el 3 de Mzo. de 2022
Hello everyone, i hope you are doing well.
I have the following data.
I want to normalize the data between 0 and 1
How can i do that

Respuestas (2)

Simon Chan
Simon Chan el 3 de Mzo. de 2022
Another option is use function rescale

Davide Masiello
Davide Masiello el 3 de Mzo. de 2022
Given the matrix A that you want to normalise, you could write
A = A/max(A(:));
  1 comentario
Image Analyst
Image Analyst el 3 de Mzo. de 2022
He wants the output to go between 0 and 1. Your code will not put the min at 0 unless it is already 0. The easiest solution is to just use
A = rescale(A, 0, 1);

Iniciar sesión para comentar.

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by