Scilab 5.4.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
speye
疎単位行列
呼び出し手順
Isp=speye(nrows,ncols) Isp=speye(A)
パラメータ
- nrows
整数 (行数)
- ncols
整数 (列数)
- A
疎行列
- sp
疎単位行列
説明
Isp=speye(nrows,ncols)
は,
nrows
行,
ncols
列の
疎単位行列Isp
を返します.
(非正方行列は主対角項に1を有します).
Isp=speye(A)
はA
と
同じ次元の疎単位行列を返します.
[m,n]=size(A)
の場合, speye(m,n)
および
speye(A)
は等価です. なお,
speye(3)
は
speye(3,3)
と等価ではありません.
Report an issue | ||
<< nnz | Sparse Matrix Manipulation | spones >> |