summaryrefslogtreecommitdiff
path: root/3812/CH1/EX1.6.g/1_6_g.sce
blob: 88a8c588fcb4e4980cade09691c80b94d4676198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Example 1.6<g>//
//draw the waveform of the signal x7(t)=u(t)-2*u(t-1)+u(t-2)//
clc ;
clear all;
t=-10:.001:10
for i=1:length(t)
if t(i)>=0 & t(i)<=1 then
x(i)=1;
end
if t(i)>=1 & t(i)<=2 then
x(i)=-1
end
end
//figure
plot2d(t,x);
xtitle('Required figure','t','x(t)')