Apply stemming on the input text
str = text_porterstemmer(filepath);
String of path to file, or Scilab string array
The result of stemming
A simple function using the Stemmer2 class
input_str = 'Scilab is a free and open source software for engineers & scientists'; out_str = text_porterstemmer(input_str); disp(out_str); | ![]() | ![]() |
Martin Porter, The Porter Stemming Algorithm: https://tartarus.org/martin/PorterStemmer/