summaryrefslogtreecommitdiff
path: root/2279/CH1/EX1.3/Ex1_3.sce
blob: 90cc3f2947934a4260f73cda2f44da5ae0adf93f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clc
clear
clf
interval=input('enter the value of time interval T between two samples');
t=(-20*interval):interval:(20*interval);
for i=1:length(t)
    if t(i)<0 then
        x(i)=-1;
    elseif t(i)>0 then
        x(i)=1;
    else
        x(i)=0;
    end
end
plot(t,x,".");
xtitle("x(t)=1 for positive values of t..., x(t)=0 for t=0...., x(t)=-1 for negative values of t","time","amplitude");
xgrid(5)