I want to check the list [2:N] for values that are devisible by 2 and remove those from the list, help plz

1 vue (au cours des 30 derniers jours)
clear;
close all
clc;
N = 10
list = [2:N]
x = 2
if (list(list(x) ~= 2) == 'false'
list(x) = []
x = x + 1
end

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 2 Déc 2019
Modifié(e) : KALYAN ACHARJYA le 2 Déc 2019
N = 10;
list=2:N
list(find(mod(list,2)==0))=[]
Result:
list =
2 3 4 5 6 7 8 9 10
list =
3 5 7 9

Plus de réponses (0)

Catégories

En savoir plus sur Logical 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