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