Matlab exercise: Signals and Systems HW#3

The following steps will guide you through the Matlab exercise (Note the % indicates a comment and need not be entered.) In the Matlab Command window type:   x = [1:1:140]; % sets up the domain yCarrier = cos(pi*x/8); % create a sinusoid to act as a carrier plot(x,yCarrier); % and plot it ySignal = […]