function x = make_x(n)
%MAKE_X makes n space points
length = 2*pi;
x = length*(0:n-1)/n;
end

