Octave では、文字列を文字列の行列に変換したいと考えています。文字列があるとします:
s = "one two three one one four five two three five four"
次のようにマトリックスに分割したい:
one
two
three
four
five
重複を削除した状態。
このコード:
words = strsplit(s, ",") %Split the string s using the delimiter ',' and return a cell string array of substrings
words
とまったく同じに行列を作成するだけs
です。
文字列を一意の単語のマトリックスに変換するにはどうすればよいですか?