FPGA Central - World's 1st FPGA / CPLD Portal

FPGA Central

World's 1st FPGA Portal

 

Go Back   FPGA Groups > NewsGroup > DSP

DSP comp.dsp newsgroup, mailing list

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-08-2006, 07:48 PM
[email protected]
Guest
 
Posts: n/a
Default Fractional Octave Smoothing

Does anybody know a ref(s) to free description of fractional octave
smoothing?

Reply With Quote
  #2 (permalink)  
Old 07-10-2006, 04:10 AM
robert bristow-johnson
Guest
 
Posts: n/a
Default Re: Fractional Octave Smoothing


[email protected] wrote:
> Does anybody know a ref(s) to free description of fractional octave
> smoothing?


Google is your friend. try it!

http://www.wcl.ee.upatras.gr/audiogr...apers/asme.pdf

i read the abstract and i don't even know what it is about.

r b-j

Reply With Quote
  #3 (permalink)  
Old 07-10-2006, 08:23 PM
[email protected]
Guest
 
Posts: n/a
Default Re: Fractional Octave Smoothing


robert bristow-johnson wrote:
> Google is your friend. try it!
>
> http://www.wcl.ee.upatras.gr/audiogr...apers/asme.pdf
>
> i read the abstract and i don't even know what it is about.
>
> r b-j


Agree, Google is my friend :-) But the article has nothing cobcrete,
except for a ref to the P.Hatziantoniou,J.Mourjopoulos paper.

At any case, I have found inside DRC code something like dtetrmining a
window width for a smotthing. Now, my python code looks this way:

def foClasicSmooth( x, octaveFraction = 1.0/3.0 ):
y = []
rightFactor = math.pow(2.0, octaveFraction / 2.0 )
leftFactor = 1.0 / rightFactor

for n in range(len(x)):
left = long(n * leftFactor)
right = long(n * rightFactor)
y.append( sum( x[left : right + 1] ) / (right - left + 1) )

return y

It works fine for me.

Reply With Quote
  #5 (permalink)  
Old 07-11-2006, 06:09 PM
[email protected]
Guest
 
Posts: n/a
Default Re: Fractional Octave Smoothing

Andreas Huennebeck wrote:
> Not a reference, but source code from my libAHmath library:
>
> http://www.huennebeck-online.de/soft...src/index.html -> Math Library
>
> The function ReduceSpectrum::smoothLogXScale() in ReduceSpectrum.c does
> smoothing for any factor.
>
> bye
> Andreas


Andreas, thanks! I'll dig in.

Andrew

Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Octave Smoothing mikem DSP 3 05-24-2006 09:24 AM
UART with fractional baudrate generator ? Or fractional baudrate generator alone Martin Maurer VHDL 3 04-19-2006 03:26 PM
Fractional Saving snigdha DSP 15 03-25-2006 04:48 AM
Time-Domain, FFT, and Octave (and 1/3 Octave) band analysis David Reid DSP 5 02-20-2004 04:00 PM
spectral smoothing in Matlab Roman Katzer DSP 8 08-08-2003 07:05 PM


All times are GMT +1. The time now is 01:51 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright 2008 @ FPGA Central. All rights reserved