How do you remove multiples of certain numbers from a row vector?
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Caroline F
le 7 Mar 2022
Commenté : Stephen23
le 16 Mar 2022
I am trying to create a for loop that finds all values in the range [1,100] that are also multiple of 3 or 5, but not 3 AND 5, and save these in a row vector labeled M1. It was suggested that I use mod()/rem() functions. I am struggling on how to remove the numbers that are multiples of 3 and 5.
M1=[];
for x = 1:100
if mod(x,3)==0||mod(x,5)==0
M1=[M1,x];
end
if mod(x,3)==0 & mod(x,5)==0
M1(x)=[]
end
end
M1
0 commentaires
Réponse acceptée
Max Alger-Meyer
le 7 Mar 2022
The easiest way to do this is with is just adding additional conditions to your first if statement, and deleting the second if statement alltogether. We do this by placing the "or" conditions in parantheses, and having a third condition that checks that the sum of the mod(x,3) and mod(x,5) isn't zero. If mod(x,3) and mod(x,5) sum to zero, then we know that the index must be wholly divisible by both.
M1=[];
for x = 1:100
if (mod(x,3) == 0||mod(x,5) == 0) && sum(mod(x,3) + mod(x,5)) ~= 0
M1=[M1,x];
end
end
M1
2 commentaires
Garrett Viton
le 14 Mar 2022
How would one go about doing this if it was "3 and 5" instead of "3 or 5"?
Max Alger-Meyer
le 15 Mar 2022
So if I understand you correctly, you want to remove only numbers that are divisible by both 3 and 5? If that's the case, you could just use the second condition in the if statement:
M1=[];
for x = 1:100
if sum(mod(x,3) + mod(x,5)) ~= 0
M1=[M1,x];
end
end
M1
Alternatively, we can simplify this a little further by thinking about what is really happening. This didn't cross my mind the first time, but if you looks at the outputs from my original answer, you can see that the only numbers that are divisible by both 3 and 5 are just going to be multiple of 15, so we can use mod(x,15) instead of checking the sum of the mods of 3 and 5. That leaves us with:
M1=[];
for x = 1:100
if mod(x,15) ~= 0
M1=[M1,x];
end
end
M1
Plus de réponses (1)
Jan
le 15 Mar 2022
Modifié(e) : Jan
le 16 Mar 2022
You do not need a loop.
n = 100;
x = false(1, n);
x(3:3:n) = true;
x(5:5:n) = true;
x(15:15:n) = false;
Result = find(x)
% Or:
x = 1:100;
Result = x((mod(x, 3) == 0 | mod(x, 5) == 0) & mod(x, 15) ~= 0)
% Shorter:
Result = x(~(mod(x, 3) & mod(x, 5)) & mod(x, 15))
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements 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!