diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2279/CH2/EX2.2/Ex2_2.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '2279/CH2/EX2.2/Ex2_2.sce')
-rw-r--r-- | 2279/CH2/EX2.2/Ex2_2.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/2279/CH2/EX2.2/Ex2_2.sce b/2279/CH2/EX2.2/Ex2_2.sce new file mode 100644 index 000000000..13508629a --- /dev/null +++ b/2279/CH2/EX2.2/Ex2_2.sce @@ -0,0 +1,38 @@ +//Example 2.2
+clf
+clear
+clc
+t=[-10:0.01:10];
+for i=1:length(t)
+ if t(i)>= -2 & t(i)<=4 then
+ x(i)=(t(i)+2)/6;
+ else
+ x(i)=0;
+ end
+end
+subplot(3,1,1);
+plot2d(t,x,rect=[-10 0 10 2]);
+xtitle("x(t) vs t","t in sec","x(t)");
+subplot(3,1,2);
+plot2d(t-1,x,rect=[-10 0 10 2]);
+xtitle("x(t+1) vs t","t in sec","x(t+1)");
+subplot(3,1,3);
+plot2d(t+1,x,rect=[-10 0 10 2]);
+xtitle("x(t-1) vs t","t in sec","x(t-1)");
+xset('window',1);
+subplot(3,1,1);
+plot2d(t/2,x,rect=[-10 0 10 2]);
+xtitle("x(2t) vs t","t in sec","x(2t)");
+subplot(3,1,2);
+plot2d(2*t,x,rect=[-10 0 10 2]);
+xtitle("x(t/2) vs t","t in sec","x(t/2)");
+subplot(3,1,3);
+plot2d(-t/3,x,rect=[-10 0 10 2]);
+xtitle("x(-3t) vs t","t in sec","x(-3t)");
+xset('window',2);
+subplot(3,1,1);
+plot2d(-(t-3),x,rect=[-10 0 10 2]);
+xtitle("x(3-t) vs t","t in sec","x(3-t)");
+subplot(3,1,2);
+plot2d(-(t-2)/2,x,rect=[-10 0 10 2]);
+xtitle("x(-2t+2) vs t","t in sec","x(-2t+2)");
|