Main Content

string

スカラー文書から string ベクトルへの変換

説明

words = string(document) は、スカラーの tokenizedDocument を単語の string 配列に変換します。

すべて折りたたむ

スカラーのトークン化された文書を単語の string 配列に変換します。

document = tokenizedDocument("an example of a short sentence")
document = 
  tokenizedDocument:

   6 tokens: an example of a short sentence

words = string(document)
words = 1x6 string
    "an"    "example"    "of"    "a"    "short"    "sentence"

入力引数

すべて折りたたむ

入力文書。スカラー tokenizedDocument オブジェクトとして指定します。

出力引数

すべて折りたたむ

出力単語。string ベクトルとして返されます。

バージョン履歴

R2017b で導入