IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 6, 2005, 6:43:52 PM (21 years ago)
Author:
Paul Price
Message:

Importing current working PAP version (many bug fixes since this branch) straight on top of this version, and tidying up a bit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pois/src/poisSolveEquation.c

    r3792 r5717  
    3939
    4040        if (stamp->status == POIS_STAMP_USED) {
    41 
    42 #ifdef TESTING
    43             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 #endif
    51 
    5241            (void)psBinaryOp(matrix, matrix, "+", stampMatrix);
    5342            (void)psBinaryOp(vector, vector, "+", stampVector);
     
    6150    psTrace("pois.solveEquation", 1, "Background difference is %f\n", solution->data.F64[solution->n - 1]);
    6251
     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
    6362    // Clean up
    6463    psFree(luMatrix);
Note: See TracChangeset for help on using the changeset viewer.