You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function tf=isodd(x)
|
|
%Input (x) is a scalar, vector or matrix.
|
|
%Output (tf) is 1 or 0.
|
|
%Output is 1 if all elements of x are odd, 0 otherwise.
|
|
tf=min(odd(x(:))==x(:));
|