summaryrefslogtreecommitdiff
path: root/3812/CH1/EX1.7.c/1_7_c.sce
blob: 6431584f8614dc26f0672f95e9692998f0a85c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Example 1.7<c>
//draw the waveform of the signal x1(t)=r(-t)
clc;
clear all;
t=-10:0.001:10;
for i=1:length(t)
if t(i)>=0  then
x(i)=-t(i);
else
x(i)=0;
end
end
//figure
plot2d(x,t);
xtitle('Required figure','t','x(t)')