function [ argument ] = isEven( x )
%UNTITLED3 Summary of this function goes here
%   Detailed explanation goes here
    
    if mod(x,2) == 0
        argument = 1;
    else 
        argument = 0;

end

