Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2024.0.0 - English


full

sparse to full matrix conversion

Syntax

X = full(sp)

Arguments

sp

dense or sparse vector or matrix of booleans or real or complex numbers, or of strings.

X

full matrix

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)
--> 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.

See also

  • sparse — sparse matrix definition
  • sprand — sparse random matrix
  • speye — sparse identity matrix

History

VersionDescription
5.5.0 full() extended to dense booleans.
6.0.0 full() returns as is any non-sparse input.
Report an issue
<< adj2sp Sparse Matrix Conversion sp2adj >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Oct 24 14:30:04 CEST 2023