full
Sparse to full matrix conversion.
📝Syntax
M = full(sp)
📥Input Arguments
Parameter Description
sp a matrix: double or logical, sparse.
📤Output Arguments
Parameter Description
M a matrix.
📄Description

full converts a sparse matrix into its full representation.

If input argument is already full then output argument will be equal to input argument.

💡Examples
sp = sparse(eye(3,3))
F = full(sp)
🔗See Also
sparse
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub