diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2606/CH8/EX8.24 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2606/CH8/EX8.24')
-rwxr-xr-x | 2606/CH8/EX8.24/ex8_24.jpg | bin | 0 -> 26057 bytes | |||
-rwxr-xr-x | 2606/CH8/EX8.24/ex8_24.sce | 22 |
2 files changed, 22 insertions, 0 deletions
diff --git a/2606/CH8/EX8.24/ex8_24.jpg b/2606/CH8/EX8.24/ex8_24.jpg Binary files differnew file mode 100755 index 000000000..980379776 --- /dev/null +++ b/2606/CH8/EX8.24/ex8_24.jpg diff --git a/2606/CH8/EX8.24/ex8_24.sce b/2606/CH8/EX8.24/ex8_24.sce new file mode 100755 index 000000000..aac6ea779 --- /dev/null +++ b/2606/CH8/EX8.24/ex8_24.sce @@ -0,0 +1,22 @@ +//Page Number: 8.25
+//Example 8.24
+clc;
+//Given, band limited gaussian noise with psd,
+S=9.6D-5; //W/Hz for |f|<8kHz
+L=100D-3; //H
+R=100; //Ohms
+
+//(a) Noise power at input of filter
+
+x0=-8000;
+x1=8000;
+Pni=S*(integrate('1','f',x0,x1));
+disp('W',Pni,'Noise power at input of filter:');
+
+//Plot
+x=linspace(-8,8,3);
+y=linspace(0,1,1);
+
+plot(x,y);
+
+
|