summaryrefslogtreecommitdiff
path: root/3648/CH14/EX14.3/Ex14_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH14/EX14.3/Ex14_3.sce')
-rw-r--r--3648/CH14/EX14.3/Ex14_3.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH14/EX14.3/Ex14_3.sce b/3648/CH14/EX14.3/Ex14_3.sce
new file mode 100644
index 000000000..a5f6c51dd
--- /dev/null
+++ b/3648/CH14/EX14.3/Ex14_3.sce
@@ -0,0 +1,10 @@
+//Example 14_3
+clc();
+clear;
+//To find the intensity of sound
+level=3.5 //Units in dB
+i2=10^-12 //Units in W/meter^2
+i=10^(level+log10(i2)) //Units in W/meter^2
+printf("The intensity of sound is I=")
+disp(i)
+printf("W/meter^2")