Scilab 6.1.0
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
speye
疎単位行列
呼び出し手順
Isp = speye(A) Isp = speye(nrows, ncols)
引数
- 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 >> |