e1071 (version 1.5-20)

stft: Computes the Short Time Fourier Transform of a Vector

Description

This function computes the Short Time Fourier Transform of a given vector X.

First, time-slices of length win are extracted from the vector. The shift of one time-slice to the next one is given by inc. The values of these time-slices are smoothed by mulitplying them with a window function specified in wtype. For the thus obtained windows, the Fast Fourier Transform is computed.

Usage

stft(X, win=min(80,floor(length(X)/10)), inc=min(24,
floor(length(X)/30)), coef=64, wtype="hanning.window")

Arguments

X
The vector from which the stft is computed.
win
Length of the window. For long vectors the default window size is 80, for short vectors the window size is chosen so that 10 windows fit in the vector.
inc
Increment by which the window is shifted. For long vectors the default increment is 24, for short vectors the increment is chosen so that 30 increments fit in the vector.
coef
Number of Fourier coefficients
wtype
Type of window used

Value

  • Object of type stft. Contains the values of the stft and information about the parameters.
  • valuesA matrix containing the results of the stft. Each row of the matrix contains the coef Fourier coefficients of one window.
  • windowsizeThe value of the parameter win
  • incrementThe value of the parameter inc
  • windowtypeThe value of the parameter wtype

See Also

plot.stft

Examples

Run this code
x<-rnorm(500)
y<-stft(x)
plot(y)

Run the code above in your browser using DataCamp Workspace