Write a MATLAB script for visualization. Use the subplot command to plot all the signals in 4 rows and 2 columns. Put a title and labels on each waveform - the x-axis is Time and the y-axis is amplitude. The title of the waveform is Sl (for the first signal) (12 Points).
Time = linspace(0,10,1000)
S1 = 1.5*sin(Time) - color red
S2 = 1.5*cos(Time) - color blue
S3 = 2*sin(Time - color red
S4 = 2*cos(Time - color blue
S5 = -2.5*sin(Time) - color red
S6 = -2.5*cos(Time) - color blue
S7 = -3*sin(Time - color red
S8 = 3*cos(Time - color blue