Trying to find the odd and even number from 3:200 using equation mentioned below

1 回表示 (過去 30 日間)
Kai5er
Kai5er 2022 年 11 月 28 日
編集済み: Matt J 2022 年 11 月 28 日
n = 3:1:200;
B = rem(n,2);
if B == 0
x = (n-4/2) + 0.5;
else
x = (n-3)/2 + 1 ;
end

採用された回答

Matt J
Matt J 2022 年 11 月 28 日
編集済み: Matt J 2022 年 11 月 28 日
n = 3:200;
even=~rem(n,2);
x = (n-3)/2 + 1 ;
x(even)=(n-4)/2+0.5;

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by