This is a Matlab Exercise problem. Please create the Matlab code
and figure for the following problem using problem
specifications:
Plot x vs y when y=sin(x), y=cos(x), y=sin (2*x), and y=2*sin(x)
when x = 1:0.1:10. Use 2 by 2 subplot, sin(x) is in
location 1, cos(x) is in location 2, sin(2*x) is in location 3 and
2*sin(x) is in location 4.
The plot should have:
(1) x label = ‘x value’, y label = ‘y value’, legend
‘y=sin(x)’,’ y=cos(x)’,’ y=sin...