function myplot(x, y, sx, sy, t) % XYPLOT personal plotting function myplot(x,y,sx,sy,t). % Plots y vs x wiyh xlabel = sx, ylabel = sy, and title = t. % EGR 106 example function plot(x,y,'linewidth',3) % Set the line width to 3 points xlabel(sx,'fontsize',16) % Set the label to 16 points ylabel(sy,'fontsize',16) title(t,'fontsize',16) grid % Turn the gro=id on