str2cell: a pedestrian cell creator

バージョン 1.0.0.0 (1.72 KB) 作成者: us
creates a cell array from an input vector of any valid ML datatype
ダウンロード: 9.3K
更新 2005/6/7

ライセンスの表示

help str2cell

c = str2cell(v)
c = str2cell(v,delim[s])

creates a cell array C from input vector V.
places segments of V seperated by delimiter
DELIM into separate cells of C.

see also: CELLSTR

v : a string/vector of a ML supported data class
delim : array of delimiter[s] [def: isspace]
v-class syntax
----------------------
char 'xyz'
other [1 2 pi]

note:
an input matrix (NxM) will be turned into a
1x(N*M) column vector WITHOUT warning!

examples:
s='this is a ;;; test string; +-0 ;;;_;;; for; +;+ fun;';
c=str2cell(s,' +-;0_')
'this'
'is'
'a'
'test'
'string'
'for'
'fun'

d=[pi pi 1 2 inf 4 5 6 nan 78 pi];
c=str2cell(d,[nan pi 5 inf])
[1x2 double] % = 1 2
[ 4]
[ 6]
[ 78]

引用

us (2024). str2cell: a pedestrian cell creator (https://www.mathworks.com/matlabcentral/fileexchange/4247-str2cell-a-pedestrian-cell-creator), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R13
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersData Type Conversion についてさらに検索
謝辞

ヒントを与えたファイル: char2cell

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

finally, after 5 years, added a missing ; at the end of line 62... sorry for the delay