diff options
Diffstat (limited to '2606/CH8/EX8.4')
-rwxr-xr-x | 2606/CH8/EX8.4/ex8_4.jpg | bin | 0 -> 16376 bytes | |||
-rwxr-xr-x | 2606/CH8/EX8.4/ex8_4.sce | 31 |
2 files changed, 31 insertions, 0 deletions
diff --git a/2606/CH8/EX8.4/ex8_4.jpg b/2606/CH8/EX8.4/ex8_4.jpg Binary files differnew file mode 100755 index 000000000..1e7aa235b --- /dev/null +++ b/2606/CH8/EX8.4/ex8_4.jpg diff --git a/2606/CH8/EX8.4/ex8_4.sce b/2606/CH8/EX8.4/ex8_4.sce new file mode 100755 index 000000000..018fc0e21 --- /dev/null +++ b/2606/CH8/EX8.4/ex8_4.sce @@ -0,0 +1,31 @@ +//Page Number: 8.8
+//Example 8.4
+clc;
+
+//Given,
+R=50;
+osnr=0;
+SNRo=(10^(osnr/10));
+disp(SNRo,'Output SNR');
+
+//As Pni=KTB
+K=1.38D-23;
+T=290;
+B=5D+5;
+Pni=K*T*B;
+disp('W',Pni,'Input noise power');
+
+//Psi=V^2/R
+//Given V=5*10^-6V
+V=0.5D-6;
+Psi=(V^2)/R;
+disp('W',Psi,'Signal Power Input');
+
+isnr=(Psi/Pni);
+disp(isnr,'Input SNR');
+
+F=(isnr/SNRo);
+disp(F,'Noise Factor');
+
+NF=10*log10(F);
+disp('dB',NF,'Noise figure');
|