There are 4 messages in this thread.
You are currently looking at messages 1 to .
Is this discussion worth a thumbs up?
Hi everybody I'm trying to compute plot 1/3 octave frequency of wave file . As anyone any idea about the right algorithm? Thanks a lot______________________________
On Thu, 12 Jul 2012 22:37:34 -0500, zohasaba <z...@yahoo.com> wrote: >Hi everybody > >I'm trying to compute plot 1/3 octave frequency of wave file . As anyone any idea about the right algorithm? >Thanks a lot > If you can read MATLAB code there are a few examples in the File Exchange. I found this one and I have seen others. http://www.mathworks.com/matlabcentral/fileexchange/19228-short-time-fft-with-octave-smooth Mark DeArman______________________________
zohasaba wrote:
> I'm trying to compute plot 1/3 octave frequency of wave file . As anyone
> any idea about the right algorithm?
- read the wave file
- do a fourier transform and store the result in an spectrum array
- create an array of 1/3 octave values
- fill this array from the spectrum array data:
- sum up all values in the spectrum array whose frequency belongs into
one specific octave value point.
- Put this sum into the octave value array.
- repeat this for all octave value points
bye
Andreas
--
Andreas Hünnebeck | email: a...@gmx.de
----- privat ---- | www : http://www.huennebeck-online.de
Fax/Anrufbeantworter: 0721/151-284301
GPG-Key: http://www.huennebeck-online.de/public_keys/andreas.asc
PGP-Key: http://www.huennebeck-online.de/public_keys/pgp_andreas.asc
______________________________On Thursday, July 12, 2012 8:37:34 PM UTC-7, zohasaba wrote: > Hi everybody > > I'm trying to compute plot 1/3 octave frequency of wave file . As anyone any idea about the right algorithm? > Thanks a lot If you Google on: 1/3 octave filter you will find explanations of fractional octave filters, codes for such filters and homework assignments to familiarize yourself with such filters. Dale B. Dalrymple______________________________