Scilab-Branch-5.3-GIT
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
spget
疎行列のエントリを取得
呼び出し手順
[ij,v,mn]=spget(sp)
パラメータ
- sp
- 実数または複素数の疎行列 
- ij
- 2列の整数行列t (非ゼロエントリのインデックス) 
- mn
- 2つのエントリ(行の次元, 列の次元)を有する整数ベクトル 
- v
- 列ベクトル 
説明
spget は疎行列の内部形式を
	標準的なij, v 形式に変換する際に使用されます.
spの非ゼロエントリは,
	ijのインデックスにより行および列の
	位置が決定されます.
例
sp=sparse([1,2;4,5;3,10],[1,2,3]) [ij,v,mn]=spget(sp);
| << speye | Sparses Matrix | spones >> |