blob: 0a221ae08ace02aa1c7693d9db68db556d579df3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Example 1.6<f>
//draw the waveform of the signal x6(t)=u(t+2)-u(t-2)
clc ;
clear all;
t=-10:.001:10;
for i=1:length(t)
if t(i)>=-2 & t(i)<=2 then
x(i)=1;
else
x(i)=0;
end
end
//figure
plot2d(t,x);
xtitle('Required figure','t','x(t)')
|