フィルターのクリア

Program that separates even and odd numbers and shows them in two vectors.

1 回表示 (過去 30 日間)
Dionisio Mendoza
Dionisio Mendoza 2019 年 2 月 4 日
回答済み: Andrei Bobrov 2019 年 2 月 4 日
The program must throw 100 in two vectors, in one the 50 pairs will be shown and in the other 50 odd. All this using the cilco for and conditions if they are necessary. I already got him to throw the numbers but to separate them.

採用された回答

Andrei Bobrov
Andrei Bobrov 2019 年 2 月 4 日
n = (1:100)';
lo = rem(n,2)==1;
pares = n(~lo);
impares = n(lo);

その他の回答 (1 件)

KSSV
KSSV 2019 年 2 月 4 日
A = magic(5) ;
A = A(:) ;
idx = mod(A,2)==0 ;
E = A(idx) ; % Even numbers
O = A(~idx) ; % Odd numbers

カテゴリ

Help Center および File ExchangeWeb Services についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by