Feeds
답변 있음
Write a MATLAB program to sketch the following discrete-time signals in the time range of –10 ≤ n ≤ 10. Please label all the graph axes clearly. If the sequence is complex, plot the magnitude and angle separately. i) x(n) = u(n) – u(n – 3)
t = (-10:1:10)'; %%Can change the interval time by replacing 1 with 0.1 step1 = t>=0; %% For u[n] step2 = t>=3; %%For u[n-3...
Write a MATLAB program to sketch the following discrete-time signals in the time range of –10 ≤ n ≤ 10. Please label all the graph axes clearly. If the sequence is complex, plot the magnitude and angle separately. i) x(n) = u(n) – u(n – 3)
t = (-10:1:10)'; %%Can change the interval time by replacing 1 with 0.1 step1 = t>=0; %% For u[n] step2 = t>=3; %%For u[n-3...
대략 7년 전 | 0

