Sparse type | full >> |
[iv, jv, vv, m, n, nzmax] = IJV(sp) |
a sparse matrix.
a vector: row indices of the nonzero elements.
a vector: column indices of the nonzero elements.
a vector: values of the nonzero elements.
an integer value: number of rows in the matrix.
an integer value: number of columns in the matrix.
an integer value: reserved size for nonzero elements..
IJV converts a sparse matrix into its COO format.
sp = sparse(eye(3,3))
[IV, JV, VV, m, n, nzmax] = IJV(sp)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET