M = full(sp)
| Parameter | Description |
|---|---|
| sp | a matrix: double or logical, sparse. |
| Parameter | Description |
|---|---|
| M | a matrix. |
full converts a sparse matrix into its full representation.
If input argument is already full then output argument will be equal to input argument.
sp = sparse(eye(3,3))
F = full(sp)
| Version | Description |
|---|---|
| 1.0.0 | initial version |