<< Ctfrwv Time-Frequency representations (C - Toolbox) Ambiguity Functions >>

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

Ctfrzam

Zao-Atlas-Marks time-frequency distribution

Calling Sequence

[TFR,T,F] = Ctfrzam(X)
[TFR,T,F] = Ctfrzam(X, T)
[TFR,T,F] = Ctfrzam(X, T, N)
[TFR,T,F] = Ctfrzam(X, T, N, G)
[TFR,T,F] = Ctfrzam(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 Zao-Atlas-Marks distribution of asignal X.

Examples

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

Authors


Report an issue
<< Ctfrwv Time-Frequency representations (C - Toolbox) Ambiguity Functions >>