diff options
Diffstat (limited to '3537/CH8/EX8.6')
-rw-r--r-- | 3537/CH8/EX8.6/Ex8_6.sce | 8 | ||||
-rw-r--r-- | 3537/CH8/EX8.6/Ex8_6.txt | 1 |
2 files changed, 9 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)
diff --git a/3537/CH8/EX8.6/Ex8_6.txt b/3537/CH8/EX8.6/Ex8_6.txt new file mode 100644 index 000000000..b21363ca6 --- /dev/null +++ b/3537/CH8/EX8.6/Ex8_6.txt @@ -0,0 +1 @@ +Intensity level=79.031 dB
\ No newline at end of file |