diff options
Diffstat (limited to '1592/CH10/EX10.11')
-rwxr-xr-x | 1592/CH10/EX10.11/Fig10_11.jpg | bin | 0 -> 6304 bytes | |||
-rwxr-xr-x | 1592/CH10/EX10.11/example_10_11.sce | 23 |
2 files changed, 23 insertions, 0 deletions
diff --git a/1592/CH10/EX10.11/Fig10_11.jpg b/1592/CH10/EX10.11/Fig10_11.jpg Binary files differnew file mode 100755 index 000000000..e38eca32d --- /dev/null +++ b/1592/CH10/EX10.11/Fig10_11.jpg diff --git a/1592/CH10/EX10.11/example_10_11.sce b/1592/CH10/EX10.11/example_10_11.sce new file mode 100755 index 000000000..e2f72428c --- /dev/null +++ b/1592/CH10/EX10.11/example_10_11.sce @@ -0,0 +1,23 @@ +//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)');
|