//Sparse Structure Header File #include #include #include //Sparse Structure Defs typedef struct {int n; int nz; int *jVals; float *matVals;} SparseRow; typedef struct {int m; int n; SparseRow *RowPointer;} SparseMatrix;