% Define the range for x. % Calculate and plot y = sin(x). x = 0:1:6*pi; y = sin(x); plot(x,y) title('Sine Wave','FontWeight','bold') xlabel('x') ylabel('sin(x)') set(gca,'Color','w') set(gcf, 'MenuBar', 'none')