matlab里,怎么用if语句判断奇数偶数?
问题描述:
matlab里,怎么用if语句判断奇数偶数?
一组数里,怎么用if语句判断奇数偶数?
答
xx = mod(x,2);
if(xx == 1)
x为奇数;
else
x为偶数;
end