If Else simple calculation not working
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jorge Young
le 17 Juin 2021
Commenté : Jorge Young
le 17 Juin 2021
Thanks in advance, I feel like this is a very simple task and I can not get the correct answer.
for the csv Vals.csv
I want to add a value of 50 if Vals.Values < 50, and subtract if Vals.Values > 50. when I try to run the example, it just returns the same values in the table.
if Vals.Values <= 50
Vals.Values = Vals.Values + 50;
else
Vals.Values = Vals.Values - 50;
end
0 commentaires
Réponse acceptée
SALAH ALRABEEI
le 17 Juin 2021
% Try this
mask = Vals.Values <= 50;
Vals(mask).Values = Vals(mask).Values + 50;
Vals(~mask).Values = Vals(~mask).Values - 50;
0 commentaires
Plus de réponses (1)
Cris LaPierre
le 17 Juin 2021
Your code works for me, with one modification - using Vals.Value instead of Vals.Values.
One thing to be aware of, Your code works in this example because all the values are less than 50. The conditional statement in an if statement accepts a single logical outcome. When you use a logical comparison on a vector, you get a result for each comparison. Therefore, the if statement treats it as if it were written all(Vals.Value <= 50). If every coparison is true, then only the if statement code runs. If even one is false, the only the else statement code runs. Either way, only one condition is executing.
The solution is to either use a for loop to check each value one at a time, or better, use logical indexing.
ind50 = Vals.Values <= 50;
Vals.Values(ind50) = Vals.Values(ind50) + 50;
Vals.Values(~ind50) = Vals.Values(~ind50) - 50;
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!