I need this question answered by sketching the graph by hand then plotted using matlab. It is for a signals and systems course
Sketch the continuous-time signals.
x(t) = cos(t) *[(u(t+(pi/2)) - 2u(t - pi)] + (cos(t)) * u(t - (3*pi/2)
Matlab code:
t=-pi:0.001:2*pi;
x=(cos(t).*(t>=-pi/2))-(2.*cos(t).*(t>=pi))+(cos(t).*(t>=3*pi/2));
plot(t,x)
The output is,
Get Answers For Free
Most questions answered within 1 hours.