diff options
Diffstat (limited to '3020/CH12/EX12.6/ex12_6.sce')
-rwxr-xr-x | 3020/CH12/EX12.6/ex12_6.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/3020/CH12/EX12.6/ex12_6.sce b/3020/CH12/EX12.6/ex12_6.sce new file mode 100755 index 000000000..57248e7ec --- /dev/null +++ b/3020/CH12/EX12.6/ex12_6.sce @@ -0,0 +1,7 @@ +clc;
+clear all;
+P1 = 100; // Power injected into fiber in milliwatts
+P0 = 40;// Power ejected into fiber in milliwatts
+loss = 10*log10(P1/P0);
+disp('dB',loss,'The loss is ')
+// Slight variation in the answer as compared to book... Checked in calculator... Book's mistake
|