diff options
Diffstat (limited to '3648/CH14/EX14.2/Ex14_2.sce')
-rw-r--r-- | 3648/CH14/EX14.2/Ex14_2.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3648/CH14/EX14.2/Ex14_2.sce b/3648/CH14/EX14.2/Ex14_2.sce new file mode 100644 index 000000000..44fdd92d5 --- /dev/null +++ b/3648/CH14/EX14.2/Ex14_2.sce @@ -0,0 +1,8 @@ +//Example 14_2
+clc();
+clear;
+//To find the sound level of a sound wave
+i1=10^-5 //Units in W/meter^2
+i2=10^-12 //Units in W/meter^2
+level=10*log10(i1/i2) //units in dB
+printf("The sound level of the sound wave is=%d dB",level)
|