Jump to content

Octave band: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
changed "f" to "fcentre" to be a bit more specific
Line 13: Line 13:
fcentre = (10.0^3) * ((2.0) .^ [-6:4])
fcentre = (10.0^3) * ((2.0) .^ [-6:4])
fd = (2^0.5);
fd = (2^0.5);
fupper = fcentre .* fd
fupper = fcentre ./ fd
flower = fcentre ./ fd
flower = fcentre ./ fd



Revision as of 06:16, 2 May 2013

If it is required to analyse a source on frequency by frequency basis, it is possible but impractical and time consuming. The whole frequency range is divided into set of frequencies called bands. Each band covers a specific range of frequencies. For this reason, a scale of octave bands and one-third octave bands has been developed. A frequency is said to be an octave in width when the upper band frequency is twice the lower band frequency. A one-third octave band is defined as a frequency band whose upper band-edge frequency (f2) is the lower band frequency (f1) times the cube root of two.

Calculation

Matlab

%% Octave Bands
fcentre = (10.0^3) * ((2.0) .^ [-6:4])
fd = (2^0.5);
fupper = fcentre ./ fd
flower = fcentre ./ fd

%% Third Octave Bands
fcentre  = (10.0^3) * ((2.0) .^ ([-18:13]./3))
fd = (2^(1/6));
fupper = fcentre .* fd
flower = fcentre ./ fd