使用 matlab 从文件中读取文本时跳过某些单词
我创建了一个 matlab 程序来查找文本文件中的单词二元组及其频率。为此,我使用 textread 函数创建了一个字符串元胞数组:
unigrams = textread('file.txt','%s');
但我也希望省略一堆单词,如“to”、“the”、“is”、“or”等以及特殊字符“#”、“$”、“&”和我的单元格数组中的“%”。有没有办法在从原始文件中读取单词时排除这些单词。
谢谢。
I have created a matlab program to find word bigrams and their frequencies in a text file. For this purpose I have created a cell array of strings using textread function:
unigrams = textread('file.txt','%s');
But I also wish to omit a bunch of words like 'to', 'the', 'is', 'or', etc and special characters '#', '$', '&' and '%' from my cell array. Is there a way to exclude these words while reading the words from the raw file.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在阅读文本后使用
setdiff
删除不需要的单词:You can use
setdiff
after reading the text to remove the unwanted words: