~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/elementary/full.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
full             Scilab Group             Scilab Function              full
 
2
NAME
 
3
   full -  sparse to full matrix conversion
 
4
  
 
5
CALING SEQUENCE
 
6
 X=full(sp)
 
7
PARAMETERS
 
8
 sp   : real or complex sparse (or full) matrix
 
9
      
 
10
 X    : full matrix
 
11
      
 
12
DESCRIPTION
 
13
   X=full(sp) converts the sparse matrix sp into its full representation.
 
14
  (If sp is already full then X equals sp).
 
15
  
 
16
EXAMPLE
 
17
 sp=sparse([1,2;5,4;3,1],[1,2,3]);
 
18
 A=full(sp)
 
19
SEE ALSO
 
20
   sparse, sprand, speye                          
 
21