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