How can I solve "Undefined function or method 'IFFT_oversampling' for input arguments of type 'double'."?

Undefined function or method 'IFFT_oversampling' for input arguments of type 'double'.
x = IFFT_oversampling(X,N,L);
How can I solve this problem?

Answers (2)

where did you get this function from?
IFFT_oversampling
This is not a MathWorks' function, so if you have downloaded it from somebody or written it yourself, you have to make sure the folder (directory) that the function is in is on the MATLAB path.
For example, if you have the function saved in c:\myfiles, then
>>addpath 'c:\myfiles'
You can also use
>>pathtool
to add the folder. Once you have added the folder, you should be able to enter
>>which IFFT_oversampling
and see that MATLAB recognizes the M-file.
List of MATLAB routines belonging to “MIMO OFDM Wireless Communication with MATLAB” which has been authored by YongS. Cho, Jae K. Kim, Won Y. Yang, and Chung G. Kang and published by Wiley in 2010

Products

Tags

Asked:

on 16 Sep 2012

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!