Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
cellstr
文字列ベクトル(または文字列行列)を文字列のセルに変換
呼び出し手順
c=cellstr(s)
引数
- s
文字列ベクトル, または文字列行列
説明
文字列のセル配列を返します.
s
が文字列の線ベクトルの場合,cellstr(s)
は, 1つの要素(s
の全ての列要素の結合)を含む(1×1)
の配列セルとなります.s
が文字列の列ベクトルの場合,cellstr(s)
は s を同じ大きさのセル に変換します: 文字列の(size(s,1)×1)
セルs
が行列の場合,s
の 各i
行目は文字列の行列になり,cellstr(s)
は全て行列s
の i番目の行の要素(すなわち s(i,1), s(i,2), s(i,3),...)を結合したものになり,(size(s,1)×1)
の文字列のセルを返します.
例
cellstr("foo") cellstr(["sci","lab"]) cellstr(["abc","def",'gh';"i","j","klm"])
Report an issue | ||
<< cell2mat | cells | iscell >> |