Why is it showing: Undefined function or variable 'removeStopWords'.
3 ビュー (過去 30 日間)
表示 古いコメント
Dear I am using R2017B with text analytics software installed(I have checked by searching get add-ons). I have written a simpole function which is following:
function x=test()
s='i am a boy and u r a grl';
disp(removeStopWords(s));
end
And it shows the following error:
Undefined function or variable 'removeStopWords'.
Would you please shed light on this issue explaining why is this happening?
Thanks,
0 件のコメント
回答 (2 件)
Walter Roberson
2018 年 11 月 5 日
https://www.mathworks.com/help/textanalytics/ref/tokenizeddocument.removestopwords.html
Introduced in R2018b
0 件のコメント
madhan ravi
2018 年 11 月 5 日
編集済み: madhan ravi
2018 年 11 月 5 日
function x=test() %EDITED
s= tokenizedDocument([ 'i am a boy and u r a grl']);
disp(removeStopWords(s));
end
11 件のコメント
Christopher Creutzig
2018 年 11 月 26 日
removeStopWords does not work on strings or char vectors, only on tokenizedDocument.
The way MATLAB searches for functions means that it will only find removeStopWords if you have a tokenizedDocument in your workspace.
>> clear all
>> which removeStopWords
'removeStopWords' not found.
>> td = tokenizedDocument;
>> which removeStopWords
[..]/matlab/toolbox/textanalytics/textanalytics/tokenizedDocument.m % tokenizedDocument method
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!