x = linspace(0,2*pi,100); y = sin(x); plot(x,y) Label the axes and add a title. xlabel('x') ylabel('sin(x)') title('Plot of the Sine Function') Plot Multiple Lines By default, MATLAB clears the figure before each plotting command. Use thefigurecommand to open a new figure...