summaryrefslogtreecommitdiff
path: root/2279/CH1/EX1.1/Ex1_1.sce
blob: 1157511fda994dcf0285e3e4b6ad529b1f60e9ee (plain)
1
2
3
4
5
6
7
8
9
10
clf
clc
clear
t=[-20:0.01:20];
for i=1:length(t)
    x(i)=2;
end
plot(t,x);
xtitle("x(t)=2 for all t","time","amplitude");
xgrid(5)