- Scilab help
- Elementary Functions
- bitwise
- Discrete mathematics
- elementarymatrices
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- abs
- amell
- and
- &
- cat
- cell2mat
- cellstr
- char
- delip
- diff
- exp
- imag
- imult
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isreal
- isvector
- log
- log10
- log1p
- log2
- logm
- lstsize
- max
- maxi
- min
- mini
- modulo
- ndims
- norm
- or
- |
- pertrans
- real
- sign
- signm
- size
- sort
- sqrt
- sqrtm
- squarewave
- toeplitz
- typeof
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
cat
複数の配列を結合する
呼び出し手順
y=cat(dims,A1,A2,...,An)
パラメータ
- dims
正の実数スカラー.
- A1,A2,..An
スカラー, ベクトル, 行列または多次元配列, またはセル配列. A1,A2,...,An は(次元 dims を除き)同じ大きさとなります. dims 以外の i について size(A1,i)=size(A2,i)=...=size(An,i)とし, size(A1,dims), size(A2,dims),...,size(An,dims)は異なる数と することができます.
- y
スカラー, ベクトル, 行列またはセル配列, y は than A1,A2,...,Anと同じ型となります.
説明
y=cat(dims,A1,A2,...,An) :
y は,
入力引数A1,A2,...,Anを結合したものとなります.
dims=1の場合,
結合は行方向に行われます.
dims=2の場合,結合は入力引数の列方向に行われます,...
dims=1の場合, 結合は行方向に行われます
A1=[1 2 3 ; 4 5 6]; A2=[7 8 9 ; 10 11 12]; y=cat(1,A1,A2) => y=[1 2 3 ; 4 5 61 ;7 8 9; 10 11 12]
dims=2の場合, 結合は入力引数の列方向に行われます.
A1=[1 2 3;4 5 6]; A2=[7 8 9 ;10 11 12]; y=cat(2,A1,A2) => y=[1 2 3 7 8 9 ; 4 5 6 10 11 12]
例
// first example : concatenation according to the rows dims=1; A1=[1 2 3]; A2=[4 5 6 ; 7 8 9]; A3=[10 11 12]; y=cat(dims,A1,A2,A3) // second example : concatenation according to the columns dims=2; A1=[1 2 3]'; A2=[4 5;7 8;9 10]; y=cat(dims,A1,A2) // third example : concatenation according to the 3th dimension dims=3; A1=matrix(1:12,[2,2,3]); A2=[13 14;15 16]; A3=matrix(21:36,[2,2,4]); y=cat(dims,A1,A2,A3)
作者
Farid Belahcene
<< & | Elementary Functions | cell2mat >> |