Scilab 6.0.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
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);
Report an issue | ||
<< spcompack | Sparse Matrix Conversion | chfact >> |