sparse to full matrix conversion
X = full(sp)
dense or sparse vector or matrix of booleans or real or complex numbers, or of strings.
full matrix
X=full(sp)
converts the sparse matrix sp
into its
full representation. (If sp
is already full then X
equals
sp
).
sp = sparse([1,2;5,4;3,1],[1,2,3]) A = full(sp) | ![]() | ![]() |
--> sp = sparse([1,2;5,4;3,1],[1,2,3]) sp = ( 5, 4) sparse matrix ( 1, 2) 1. ( 3, 1) 3. ( 5, 4) 2. --> A = full(sp) A = 0. 1. 0. 0. 0. 0. 0. 0. 3. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 2.
Version | Description |
5.5.0 | full() extended to dense booleans. |
6.0.0 | full() returns as is any non-sparse input. |