Scilab 5.3.0
- Scilab Online Help
- Elementary Functions
- Discrete mathematics
- Floating point
- Integer representation
- Trigonometry
- abs
- amell
- and
- &
- binomial
- bitand
- bitor
- bloc2exp
- bloc2ss
- cat
- cell2mat
- cellstr
- char
- cumprod
- cumsum
- delip
- diag
- diff
- dsearch
- exp
- eye
- flipdim
- gsort
- imag
- imult
- ind2sub
- intersect
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isreal
- isvector
- kron
- lex_sort
- linspace
- log
- log10
- log1p
- log2
- logm
- logspace
- lstsize
- max
- maxi
- meshgrid
- min
- mini
- modulo
- ndgrid
- ndims
- nextpow2
- norm
- ones
- or
- |
- pen2ea
- permute
- pertrans
- prod
- rand
- real
- resize_matrix
- setdiff
- sign
- signm
- size
- solve
- sort
- sqrt
- sqrtm
- squarewave
- ssrand
- sub2ind
- sum
- sysconv
- sysdiag
- syslin
- toeplitz
- trfmod
- trianfml
- tril
- trisolve
- triu
- typeof
- union
- unique
- vectorfind
- zeros
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
resize_matrix
異なる大きさの新規行列を作成
呼び出し手順
resMat = resize_matrix(mat,nbRow,nbCol,[typeOfMat])
パラメータ
- mat
入力行列で, この行列から大きさが変更された行列が 作成されます.
- nbRow
大きさが変更される行列の行の数.
- nbCol
大きさが変更される行列の列の数.
- typeOfMat
文字列, 大きさが変更される行列の型名.
- resMat
大きさが変更された行列.
説明
大きさ nbRow
x
nbCol
の行列を作成し,
(i,j)
が入力行列の範囲の場合,
その要素(i,j)
をmat(i,j)
とします.
それ以外の場合, 要素 (i,j)
は
実数または整数行列の場合に 0
,
論理値行列,文字列行列の空の文字列
の場合に %f
となります.
出力行列の型は
typeOfMat
引数で指定することにより修正できます.
この場合,入力行列がこの型と互換性があることを確認してください.
現在,実数,整数行列,論理値および文字列行列のみが
サポートされています.
これは, typeOfMat
を
'constant', 'boolean', 'string' または任意の整数型
('int8', 'int16',...)の中から選択する必要があることを意味します.
例
// 数値行列 myMat = 5 * rand( 3, 4 ) myMat = resize_matrix( myMat, 3, 3 ) // 行列の大きさを縮小 myMatInteger = resize_matrix( myMat, 4, 4, 'int32' ) // 整数行列を作成 myMatBoolean = resize_matrix( myMat, 2, 2, 'boolean' ) myMatBoolean = resize_matrix( myMatBoolean, 3, 5 ) // 文字列行列 myMatString = ["Scilab","the";"Open Source","Scientific";"Software","Package"] myMatString = resize_matrix( myMatString, 3, 1 )
作者
Jean-Baptiste Silvy
<< real | Elementary Functions | setdiff >> |