~logan/ubuntu/trusty/suitesparse/4.2.1-3ubuntu1

« back to all changes in this revision

Viewing changes to CHOLMOD/MATLAB/mread.c

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere, Rafael Laboissiere, Ondrej Certik
  • Date: 2008-02-21 14:46:50 UTC
  • mfrom: (1.1.2 upstream) (5.1.1 hardy)
  • Revision ID: james.westby@ubuntu.com-20080221144650-tgeppgj0t7s759i8
Tags: 3.1.0-3
[ Rafael Laboissiere ]
* Upload to unstable

[ Ondrej Certik ]
* XS-DM-Upload-Allowed: yes field added
* Ondrej Certik added to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    void *G ;
43
43
    cholmod_dense *X = NULL ;
44
44
    cholmod_sparse *A = NULL, *Z = NULL ;
45
 
    cholmod_triplet *T ;
46
45
    cholmod_common Common, *cm ;
47
 
    Int *Ti, *Tj, *Ap, *Ai, *Zp, *Zi ;
48
 
    double *Tx, *Tz, *Ax, *Az, *Zx ;
 
46
    Int *Ap = NULL, *Ai ;
 
47
    double *Ax, *Az = NULL ;
49
48
    char filename [MAXLEN] ;
50
 
    Int nz, i, j, k, is_complex, p, nrow, ncol, pz, nzeros, allzero ;
 
49
    Int nz, k, is_complex = FALSE, nrow = 0, ncol = 0, allzero ;
51
50
    int mtype ;
52
51
 
53
52
    /* ---------------------------------------------------------------------- */