Changeset 5717 for trunk/pois/src/poisSolveEquation.c
- Timestamp:
- Dec 6, 2005, 6:43:52 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/pois/src/poisSolveEquation.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pois/src/poisSolveEquation.c
r3792 r5717 39 39 40 40 if (stamp->status == POIS_STAMP_USED) { 41 42 #ifdef TESTING43 printf("Matrix %d:\n", s);44 for (int i = 0; i < matrix->numCols; i++) {45 for (int j = 0; j < matrix->numRows; j++) {46 printf("%f ", matrix->data.F64[i][j]);47 }48 printf("\n");49 }50 #endif51 52 41 (void)psBinaryOp(matrix, matrix, "+", stampMatrix); 53 42 (void)psBinaryOp(vector, vector, "+", stampVector); … … 61 50 psTrace("pois.solveEquation", 1, "Background difference is %f\n", solution->data.F64[solution->n - 1]); 62 51 52 #if 0 53 printf("Matrix:\n"); 54 for (int i = 0; i < matrix->numCols; i++) { 55 for (int j = 0; j < matrix->numRows; j++) { 56 printf("%f ", matrix->data.F64[i][j]); 57 } 58 printf("\n"); 59 } 60 #endif 61 63 62 // Clean up 64 63 psFree(luMatrix);
Note:
See TracChangeset
for help on using the changeset viewer.
