Effacer les filtres
Effacer les filtres

How map values of array to 0 and 1

29 vues (au cours des 30 derniers jours)
Eleanor Lee
Eleanor Lee le 6 Déc 2019
Réponse apportée : Jeremy le 6 Déc 2019
How can i write a function such that it takes an array, and outputs an array of same size with values lying in [0,1] but also that the largest value is mapped to 1, and smallest to 0?

Réponses (2)

Jeremy
Jeremy le 6 Déc 2019
normalized_array = normalize(array,'range',[0 1]);

Guillaume
Guillaume le 6 Déc 2019
It's trivial normalisation. Subtract the minimum of your array so the new minimum is 0, then divide by the max of that new array so the max becomes 1.

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by