Sparse type IJV >>

full


Sparse to full matrix conversion.


Syntax


M = full(sp)

Input argument


sp

a matrix: double or logical, sparse.

Output argument


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.

Example


sp = sparse(eye(3,3))
F = full(sp)

See also


sparse.

History


Version Description
1.0.0 initial version

Author


Allan CORNET

Sparse type IJV >>