Undefines function 'fsic' for input arguments of type 'cell'
조회 수: 2 (최근 30일)
이전 댓글 표시
I have been trying to download some software and I have managed ot add the path to the file, but when i try running function front the file i keep getting the error, undefined function 'fsic' for input arguments of type 'cell'. Error in test_audpater if ~isempty(fsic(varagin, '--play'). (test_audapter is the function in the code added by the path)
Have i added the path wrong?
addpath C:\Users\Bryher\OneDrive\Documents\audapter_matlab-master\mcode;
test_audapter('formant', '--play')
댓글 수: 0
채택된 답변
추가 답변 (1개)
Karim
2022년 7월 6일
It could be the case that the required function is inside a subfoler. I would try to use
addpath( genpath( "C:\Users\Bryher\OneDrive\Documents\audapter_matlab-master\mcode" ));
Using genpath, it will also include all subfolders in the directory
댓글 수: 2
Karim
2022년 7월 6일
Then you will have to add an extra folder to the matlab path (in which the function is located), or create the function and save it in the "mcode" folder.
참고 항목
카테고리
Help Center 및 File Exchange에서 Search Path에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!