harj26.m

function y = harj26( x )
    if mod(x,2) == 0
        y = x^2-3;
    else
        y = -1;
end

Last modified: Mon Feb 13 15:16:30 2017