Scilab 5.4.1
- Scilab help
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Exponential
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- and
- &
- cat
- cell2mat
- cellstr
- isempty
- isequal
- isvector
- lstsize
- maxi
- mini
- modulo
- ndims
- nthroot
- or
- |
- sign
- size
- sort
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
行列
説明
セルcの全ての要素を結合した行列を返します.
- cell2mat(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)
参照
- cell — 空行列のセル配列を作成する.
Report an issue | ||
<< cat | Elementary Functions | cellstr >> |