Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
nnz
行列における非ゼロ要素の数
呼び出し手順
n=nnz(X)
引数
- X
実数または複素疎(または通常)行列
- n
整数, Xの非ゼロ要素の数
説明
nnz
は疎行列または通常の行列における
非ゼロ要素の数を数えます.
例
sp=sparse([1,2;4,5;3,10],[1,2,3]); nnz(sp) a=[1 0 0 0 2]; nnz(a)
参照
- spget — 疎行列のエントリを取得
Report an issue | ||
<< issparse | Sparse Matrix Manipulation | speye >> |