Удалите выбранные документы из модели сумки слов.
bag =
bagOfWords with properties:
Counts: [4x9 double]
Vocabulary: [1x9 string]
NumWords: 9
NumDocuments: 4
Удалите первые и третьи документы из bag
.
newBag =
bagOfWords with properties:
Counts: [2x5 double]
Vocabulary: ["a" "short" "sentence" "second" "final"]
NumWords: 5
NumDocuments: 2
Удалите те же документы с помощью логических индексов.
newBag =
bagOfWords with properties:
Counts: [2x5 double]
Vocabulary: ["a" "short" "sentence" "second" "final"]
NumWords: 5
NumDocuments: 2