diff options
Diffstat (limited to '3665/CH13/EX13.6/Ex13_6.sce')
-rw-r--r-- | 3665/CH13/EX13.6/Ex13_6.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3665/CH13/EX13.6/Ex13_6.sce b/3665/CH13/EX13.6/Ex13_6.sce new file mode 100644 index 000000000..34c967bb6 --- /dev/null +++ b/3665/CH13/EX13.6/Ex13_6.sce @@ -0,0 +1,13 @@ +clc//
+//
+//
+
+//Variable declaration
+Pout=40; //power(mW)
+Pin=100; //power(mW)
+
+//Calculation
+al=-10*log10(Pout/Pin); //attenuation loss(dB)
+
+//Result
+printf("\n attenuation loss is %0.2f dB",al)
|