diff options
Diffstat (limited to '3537/CH8/EX8.6/Ex8_6.sce')
-rw-r--r-- | 3537/CH8/EX8.6/Ex8_6.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3537/CH8/EX8.6/Ex8_6.sce b/3537/CH8/EX8.6/Ex8_6.sce new file mode 100644 index 000000000..ecf03f470 --- /dev/null +++ b/3537/CH8/EX8.6/Ex8_6.sce @@ -0,0 +1,8 @@ +//Example 8_6
+clc();
+clear;
+//To calculate the intensity level
+I=8*10^-5 //units in walt per meter square
+I0=10^-12 //units in decibels
+In=10*log10(I/I0)
+printf("Intensity level=%.3f dB",In)
|