How can I solve "Undefined function or method 'IFFT_oversampling' for input arguments of type 'double'."?
Show older comments
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)
Wayne King
on 16 Sep 2012
Edited: Wayne King
on 16 Sep 2012
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.
Walter Roberson
on 16 Sep 2012
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
Categories
Find more on Link-Level Simulation in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!