diff options
Diffstat (limited to '1592/CH10/EX10.11/example_10_11.sce')
-rwxr-xr-x | 1592/CH10/EX10.11/example_10_11.sce | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/1592/CH10/EX10.11/example_10_11.sce b/1592/CH10/EX10.11/example_10_11.sce index e2f72428c..70ca8ea2f 100755 --- a/1592/CH10/EX10.11/example_10_11.sce +++ b/1592/CH10/EX10.11/example_10_11.sce @@ -1,23 +1,22 @@ -//Scilab Code for Example 10.11 of Signals and systems by
-//P.Ramakrishna Rao
-//System Identification
-//Cross Correlation
-clear;
-clc;
-clear x n a y h z;
-x=[1,1,1,1,0,0];
-y=[1,3,6,10,12,12,10,6,3,1];
-h(1)=y(1)/x(1);
-for n=2:7
- for k=1:n-1
- z(k)=(h(k)*x(n-k));
- h(n)=(y(n)-sum(z));
- end
-end
-disp(h,'h(n)');
-n=1:7;
-a=gca();
-a.x_location="origin";
-a.y_location="origin";
-plot2d3(n,h,-4);
-title('System Response h(n)');
+//Scilab Code for Example 10.11 of Signals and systems by +//P.Ramakrishna Rao +//System Identification +//Cross Correlation +clear; +clc; +x=[1,1,1,1,0,0]; +y=[1,3,6,10,12,12,10,6,3,1]; +h(1)=y(1)/x(1); +for n=2:7 + for k=1:n-1 + z(k)=(h(k)*x(n-k)); + h(n)=(y(n)-sum(z)); + end +end +disp(h,'h(n)'); +n=1:7; +a=gca(); +a.x_location="origin"; +a.y_location="origin"; +plot2d3(n,h,-4); +title('System Response h(n)');
\ No newline at end of file |