Man Scilab

full
Scilab Function

full - sparse to full matrix conversion

Calling Sequence

X=full(sp)

Parameters

Description

X=full(sp) converts the sparse matrix sp into its full representation. (If sp is already full then X equals sp ).

Examples


sp=sparse([1,2;5,4;3,1],[1,2,3]);
A=full(sp)
 
  

See Also

sparse ,   sprand ,   speye ,  

Back