summaryrefslogtreecommitdiff
path: root/1592/CH9/EX9.5
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /1592/CH9/EX9.5
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '1592/CH9/EX9.5')
-rwxr-xr-x1592/CH9/EX9.5/example_9_5.sce61
1 files changed, 33 insertions, 28 deletions
diff --git a/1592/CH9/EX9.5/example_9_5.sce b/1592/CH9/EX9.5/example_9_5.sce
index 4e148ec35..7919c5b59 100755
--- a/1592/CH9/EX9.5/example_9_5.sce
+++ b/1592/CH9/EX9.5/example_9_5.sce
@@ -1,28 +1,33 @@
-//Scilab Code for Example 9.5 of Signals and systems by
-//P.Ramakrishna Rao
-clc;
-clear;
-clear z x y t T;
-n=1;
-for t=-10:0.01:10;
- x(n)=exp(-t)*u(t);
- n=n+1;
-end
-t=-10:0.01:10;
-plot(t,x);
-title('x(t)');
-n=1;
-for T=-10:0.1:0;
- z(n)=integrate('exp(-t)*exp(T-t)','t',0,1000);
- n=n+1;
-end
-n=1;
-for T=0.1:0.1:10;
- z(n+101)=integrate('exp(-t)*exp(T-t)','t',T,1000);
- n=n+1;
-end
-figure(1);
-T=-10:0.1:10;
-plot(T,z);
-title('Rxx(T)');
-xlabel('t in seconds');
+//Scilab Code for Example 9.5 of Signals and systems by
+//P.Ramakrishna Rao
+clc;
+clear;
+function [y]=u(t)
+ if t>=0
+ y=1
+else y=0
+ end
+endfunction
+n=1;
+for t=-10:0.01:10;
+ x(n)=exp(-t)*u(t);
+ n=n+1;
+end
+t=-10:0.01:10;
+plot(t,x);
+title('x(t)');
+n=1;
+for T=-10:0.1:0;
+ z(n)=integrate('exp(-t)*exp(T-t)','t',0,1000);
+ n=n+1;
+end
+n=1;
+for T=0.1:0.1:10;
+ z(n+101)=integrate('exp(-t)*exp(T-t)','t',T,1000);
+ n=n+1;
+end
+figure(1);
+T=-10:0.1:10;
+plot(T,z);
+title('Rxx(T)');
+xlabel('t in seconds'); \ No newline at end of file