https://github.com/cran/pracma
Raw File
Tip revision: 71455748623ef69836470c75c5f9384f6e872d45 authored by HwB on 28 June 2011, 00:00:00 UTC
version 0.6-3
Tip revision: 7145574
ifft.Rd
\name{ifft}
\alias{ifft}
\title{
  Inverse Fast Fourier Transformation
}
\description{
  Performs the inverse Fast Fourier Transform.
}
\usage{
ifft(x)
}
\arguments{
  \item{x}{a real or complex vector}
}
\details{
  Returns the value of the normalized discrete, univariate, inverse Fast
  Fourier Transform of the values in \code{x}.
}
\value{
  Real or complex vector of the same length.
}
\note{
  Almost an alias for \code{fft(x, inverse=TRUE)}, but dividing by
  \code{length(x)}.
}
\seealso{
  \code{\link{fft}}
}
\examples{
x <- c(1, 2, 3, 4)
(y <- fft(x))
ifft(x)
ifft(y)
}
\keyword{ array }
back to top