C++
C#
VB
JScript
All

External Function row_ifft


Copyright (C) 2005 IENT-RWTH Aachen

template<class G1,class G2> inline void row_ifft(      Matrix<G1> &XMatrix<G2> &Y)

IFFT of every row of a signal

Parameters

X

A signal

Output argumentY

The complex IFFT of every row

Remarks

If Y contains real values, then X is supposed to be complex symetric and real_ifft is performed on every row.

Example

DenseMatrix<complex<float> >::self X(4,4, 1);
DenseMatrix<complex<float> >::self Y(X.size());
row_ifft(X,Y);

DenseMatrix<complex<double> >::self X(4,4, 1);
DenseMatrix<double>::self Y(X.size());
row_ifft(X,Y);

See Also

ifft, real_ifft