Scilab-Branch-5.3-GIT
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
full
conversão de matriz esparsa para cheia (completa)
Seqüência de Chamamento
X=full(sp)
Parâmetros
- sp
- matriz esparsa (ou cheia) de reais ou complexos 
- X
- matriz cheia (completa) 
Descrição
X=full(sp) converte a matriz esparsa
    sp em sua representação cheia (completa). (Se
    sp já é cheia, então X é igual a
    sp).
Exemplos
sp=sparse([1,2;5,4;3,1],[1,2,3]); A=full(sp)
| << adj2sp | Matrizes Esparsas | ludel >> |