help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Signal PKG] limited slope


From: Robert T. Short
Subject: Re: [Signal PKG] limited slope
Date: Thu, 14 Dec 2017 11:25:30 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0

On 12/13/2017 11:39 PM, Renato S. Yamane wrote:
Hi,

Regarding the code below, someone have an idea why I have this limit
in low frequencies?

Please, see the frequency response on image available in: https://ibb.co/cgwOqG

Detail: when I use a crest factor of 12dB instead 6dB, I don´t have
this problem.

==============
pkg load signal;
pkg load ltfat;

sampling_rate = 44100;
lenght = 30;
hpf = 400;
lpf = 4000;
crest_factor = 6;

typenoise = noise((lenght)*sampling_rate, 1, 'pink');
[b,a] = butter(2, [hpf/(sampling_rate/2), lpf/(sampling_rate/2)]);
filtered = filter(b, a, typenoise);
filtered = filtered / (rms(filtered) / 10^(-crest_factor/20));
audiowrite ('signal.wav', filtered, 44100);
==============

Best regards,
Renato

_______________________________________________
Help-octave mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/help-octave

I don't get the same spectral plots you show here.  My results are much more like your "expected" slope.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]