MATLAB: Windowing a sine signalhomeworkI dont know what is windowing. Or it is writen wrong, So correct me if it is wrong and help me to solve this problem.I tried but it is out-off my knowledge. Best AnswerThis shows an example of windowing a signalt = linspace(-2*pi, 2*pi);y = sin(t);window = (t-0 > 0) - (t-2 > 0);windowed_y = window.*y;subplot(2,1,1)plot(t, y);subplot(2,1,2)plot(t, windowed_y); Related QuestionHow to plot signal for equation given belowHow to plot two seperate figures the left and right channelsLoop for bvp4c function with an unknown parameterSubplot label problem invisibleMATLAB plotting question.Plot a fourier series representation of function
Best Answer