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