<< Ctfrridb Time-Frequency representations (C - Toolbox) Ctfrridh >>

stftb >> stftb > Time-Frequency representations (C - Toolbox) > Ctfrridbn

Ctfrridbn

Reduced Interference Distribution with binomial kernel

Calling Sequence

[TFR,T,F] = Ctfrridbn(X)
[TFR,T,F] = Ctfrridbn(X, T)
[TFR,T,F] = Ctfrridbn(X, T, N)
[TFR,T,F] = Ctfrridbn(X, T, N, G)
// [TFR,T,F] = Ctfrridbn(X, T, N, G, H)

Parameters

X :

Analyzed signal.

T :

time instant(s) (default : 1:length(X)).

N :

number of frequency bins (default : length(X)).

G :

time smoothing window, (default : Hamming(N/10)).

H :

frequency smoothing window (default : Hamming(N/4)).

TFR :

time-frequency representation.

F :

vector of normalized frequencies.

Description

Computes the Reduced Interference Distribution with a kernel based on the binomial coefficients, for a signal X.

Examples

x = hilbert(sin(2*%pi*0.25*(1:128))+0.5*rand(1,128,'normal'));
g = Cwindow(31,'rect');
h = Cwindow(63,'rect');
t = 1:128;
[tfr,T,F] = Ctfrridbn(x,t,128,g,h);
grayplot(T,F,tfr');
xlabel time
ylabel frequency

See also

Authors


Report an issue
<< Ctfrridb Time-Frequency representations (C - Toolbox) Ctfrridh >>