Scilab 5.5.0
      
      - Scilabヘルプ
 - Elementary Functions
 - bitwise
 - Complex
 - Discrete mathematics
 - elementarymatrices
 - Exponential
 - Floating point
 - Integer representation
 - matrixmanipulation
 - matrixoperations
 - searchandsort
 - setoperations
 - signalprocessing
 - symbolic
 - Trigonometry
 - IsAScalar
 - and
 - &
 - cat
 - cell2mat
 - cellstr
 - iscolumn
 - isempty
 - isequal
 - ismatrix
 - isrow
 - isscalar
 - issquare
 - isvector
 - lstsize
 - maxi
 - mini
 - modulo
 - ndims
 - nthroot
 - num2cell
 - or
 - |
 - sign
 - size
 - sort
 - unwrap
 
Please note that the recommended version of Scilab is 2026.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 >> |