MATLAB Assignment: Create a MATLAB script that does the following:
Generate a sinusoidal signal, X, with user-specified amplitude, frequency, and phase offset.
Generate a second signal, Y, that is a shifted version of X with added Gaussian noise.
Plot the two signals versus time (specify a value for t).
Plot the cross-correlation of the signals X and Y.
Plot the cross-correlation of the signals Y and X.
NOTE: Remember that cross-correlation between two signals, X and Y, can be found by using xcorr(X, Y) in MATLAB (with the addition of 'biased' or 'unbiased' if necessary).