I want to check the list [2:N] for values that are devisible by 2 and remove those from the list, help plz
1 回表示 (過去 30 日間)
古いコメントを表示
clear;
close all
clc;
N = 10
list = [2:N]
x = 2
if (list(list(x) ~= 2) == 'false'
list(x) = []
x = x + 1
end
0 件のコメント
採用された回答
KALYAN ACHARJYA
2019 年 12 月 2 日
編集済み: KALYAN ACHARJYA
2019 年 12 月 2 日
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
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Encryption / Cryptography についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!