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
sub2ind
行列添字を線形添字に変換
呼び出し手順
I = sub2ind(dims,i1,i2,...) J = sub2ind(dims,Mi)
パラメータ
- dims
ベクトル: 行列の次元
- i1,i2,...
添字値配列(
I
と同じ形の行列)- Mi
列に添字値を有する行列.
- I
線形添字配列
説明
sub2ind
は
指定した添字値の集合に対応する等価な添字を定義する際に使用されます.
I = sub2ind(dims,i1,i2,..)
は
大きさdims
の行列に関して配列
i1
, i2
,..の中に
行,列,... 添字に等価な線形添字を返します.
この場合, i1
, i2
,.. は
同じ形である必要があり,
結果 I
は同じ行列の形を有しています.
I = sub2ind(dims,Mi)
は,
大きさdims
の行列に関して
行列Mi
の列における添字に等価な
線形添字を返します.
この場合,I
は列ベクトルとなります.
例
i=[1 2 1 1 2 1 1]; j=[1 2 3 1 2 3 3]; k=[1 2 1 2 1 2 1]; sub2ind([2,3,2],i,j,k) sub2ind([2,3,2],[i',j',k'])
作者
Serge Steer, INRIA
<< ssrand | Elementary Functions | sum >> |