IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 33327


Ignore:
Timestamp:
Feb 21, 2012, 4:52:51 PM (14 years ago)
Author:
watersc1
Message:

Switching from LUSolve to GJSolve. See commit log on the trunk for details.

Location:
tags/ipp-20120216/psModules/src/detrend
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-20120216/psModules/src/detrend

  • tags/ipp-20120216/psModules/src/detrend/pmPattern.c

    r33316 r33327  
    803803   
    804804    // Solve the Ax=b equation
    805     psMatrixLUSolve(XX,solution);
    806 
     805    //    psMatrixLUSolve(XX,solution);
     806    psMatrixGJSolve(XX,solution);
     807#if (0)
     808    for (int i = 0; i < numCells; i++) { // print vector b
     809      psTrace("psModules.detrend.cont",5,"b: %d %f",
     810              i,
     811              solution->data.F64[i]
     812              );
     813    }
     814#endif
     815   
    807816    /* old code to remove the minimum solution value from the set, to give a "minimal set of offsets." Mathematically unnecessary. */
    808817/*     double min = 99e99; */
Note: See TracChangeset for help on using the changeset viewer.