blob: 20e95a7007f3446c45544a80d512d9518382ab7d (
plain)
1
2
3
4
5
6
|
clc;
clear all;
I2 = 100; // The sound intensity in watts per square meters
I0 = 1e-12; // Standard intensity in watts per square meters
b = 10*log10(I2/I0);//The sound intensity level of a jet plane
disp('dB',b,'The sound intensity level of a jet plane is')
|