Undefined function "......" for input arguments of type 'double'
37 次查看(过去 30 天)
显示 更早的评论
Please help me, when I run a code it gives
"Undefined function '.....' for input arguments of type 'double'"
Let me know what to do now ?
2 个评论
采纳的回答
per isakson
2015-2-22
编辑:per isakson
2017-10-24
The cause to this error message may be one of
- typo, you have misspelled the name of the function
- the function cannot be reached because it is not on the search path
- a function with that name exists on the search path, but it is not defined for the actual type of input. E.g.
>> max(cell(1,9))
Undefined function 'max' for input arguments of type 'cell'.
- the function does not exist on your system
Measures
- check spelling
- run the command which function_name -all. If which finds it run help function_name and read carefully
- if you think it is a function, which comes with Matlab, search for the function in the Matlab documentation
- search the file function_name.m with Windows Explorer or similar
0 个评论
更多回答(1 个)
jayamala pakhare
2018-4-28
Undefined function 'rescale' for input arguments of type 'double'.
3 个评论
Camille Dingam
2020-8-24
Hello, please help me with the similar error as below:
Undefined function 'mfcc' for input arguments of type 'double'.
Steven Lord
2020-8-24
The mfcc function was introduced in Audio Toolbox in release R2018a. Do you have this toolbox installed (check the output of the ver function if you're not sure) and are you using release R2018a or later?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Signal Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!