Scilab 5.5.2
- Scilabヘルプ
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Exponential
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- and
- &
- cat
- cell2mat
- cellstr
- iscolumn
- isempty
- isequal
- ismatrix
- isrow
- isscalar
- issquare
- isvector
- lstsize
- modulo
- ndims
- nthroot
- num2cell
- or
- |
- sign
- size
- unwrap
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
cell2mat
セル配列を行列に変換
呼び出し手順
x=cell2mat(c)
引数
- c
セル,
c
の要素は同じ型を有し, スカラーまたは行列とすることができます- x
行列
説明
cell2mat(c) は,セル配列c
の
全ての要素を結合した行列を返します.
c
の全ての要素は同じデータ型(文字列またはdoubleまたは
整数または論理値)を有する必要があります.
c
の各行i
について,
cell2mat
はセル配列c
の
i
行目の全ての要素を結合します.
セル入力 c の要素が文字列の場合,
cell2mat(c) は文字列を結合した列ベクトル
を返すことに注意してください. |
例
c=makecell([2,2],[1 2 3; 6 7 8],[4 5;9 10],[11 12;16 17],[14 13 15;18 19 20]) cell2mat(c)
Report an issue | ||
<< cat | Elementary Functions | cellstr >> |