Effacer les filtres
Effacer les filtres

replace p percent of largest values in matrix columns

1 vue (au cours des 30 derniers jours)
Razieh
Razieh le 16 Avr 2015
Modifié(e) : Guillaume le 16 Avr 2015
Hi friends, I want to replace p percent of largest values of each individual column in A matrix (size m by n) with NaN. would you plz help me ,

Réponse acceptée

Guillaume
Guillaume le 16 Avr 2015
Modifié(e) : Guillaume le 16 Avr 2015
By "I want to replace p percent of largest values", I assume you mean replace the value of A that are greater than (1-p) * max_value_of_A. If not, you'll have to clarify what you mean.
A = rand(8, 10) %for example
p = 0.1; %for example
maxvalue = max(A(:));
threshold = (1-p) * maxvalue;
A(A >= threshold) = NaN

Plus de réponses (0)

Catégories

En savoir plus sur NaNs dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by