Convert scalar document to string vector
words = string(document)
example
words = string(document) converts a scalar tokenizedDocument to a string array of words.
words
document
tokenizedDocument
collapse all
Convert a scalar tokenized document to a string array of words.
document = tokenizedDocument("an example of a short sentence")
document = tokenizedDocument: 6 tokens: an example of a short sentence
words = 1x6 string "an" "example" "of" "a" "short" "sentence"
Input document, specified as a scalar tokenizedDocument object.
Output words, returned as a string vector.
context | doc2cell | doclength | joinWords | tokenizedDocument
context
doc2cell
doclength
joinWords
You have a modified version of this example. Do you want to open this example with your edits?