Without mod function and any loops(i.e for or while)
10 ビュー (過去 30 日間)
古いコメントを表示
I am wondering, is it poosible to find the even or odd numbers in a vector whithout using mod(or any inbulit functions) function or loops?
2 件のコメント
KALYAN ACHARJYA
2019 年 11 月 4 日
Without any function, or we can use other functions apart from mod or rem?
採用された回答
KALYAN ACHARJYA
2019 年 11 月 4 日
編集済み: KALYAN ACHARJYA
2019 年 11 月 4 日
Here I have used one bitget function or without any function???
a=[3 4 5 6 8]; % Just an example
data_odd=a.*bitget(a,1);
data_odd(data_odd==0)=[]
data_even=a.*~bitget(a,1);
data_even(data_even==0)=[]
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!