Undefined function "......" for input arguments of type 'double'
34 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Zahid Iqbal Rana
am 22 Feb. 2015
Kommentiert: Steven Lord
am 24 Aug. 2020
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 Kommentare
Akzeptierte Antwort
per isakson
am 22 Feb. 2015
Bearbeitet: per isakson
am 24 Okt. 2017
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 Kommentare
Weitere Antworten (1)
jayamala pakhare
am 28 Apr. 2018
Undefined function 'rescale' for input arguments of type 'double'.
3 Kommentare
Camille Dingam
am 24 Aug. 2020
Hello, please help me with the similar error as below:
Undefined function 'mfcc' for input arguments of type 'double'.
Steven Lord
am 24 Aug. 2020
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?
Siehe auch
Kategorien
Mehr zu Signal Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!