Compare values and change them

3 vues (au cours des 30 derniers jours)
Akmyrat
Akmyrat le 13 Juin 2014
Commenté : Azzi Abdelmalek le 13 Juin 2014
Lets say i have matrix A=[1 2 3;4 2 7;9 6 1] I want the values less than 5 to be replaced with zero, and bigger than 5 to be replaced with 1 in this case should be this answer A=[0 0 0;0 0 1;1 1 0] Hope someone will assist me...thanks.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 13 Juin 2014
Modifié(e) : Azzi Abdelmalek le 13 Juin 2014
A(A<5)=0
A(A>5)=1
You have to consider when the value is equal to 5
You can also have the result by
A=[1 2 3;4 2 7;9 6 1]
B=A>5
  2 commentaires
Akmyrat
Akmyrat le 13 Juin 2014
shukran Azzi Abdelmalek, how can i add all values less than 5? in this case will be 1+2+3+4+2+1=13
Azzi Abdelmalek
Azzi Abdelmalek le 13 Juin 2014

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by