IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 6, 2009, 2:23:35 PM (17 years ago)
Author:
eugene
Message:

rename LU decomp functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmSubtractionEquation.c

    r23839 r24093  
    798798
    799799        psVector *permutation = NULL;       // Permutation vector, required for LU decomposition
    800         psImage *luMatrix = psMatrixLUD(NULL, &permutation, sumMatrix);
     800        psImage *luMatrix = psMatrixLUDecomposition(NULL, &permutation, sumMatrix);
    801801        psFree(sumMatrix);
    802802        if (!luMatrix) {
     
    807807            return NULL;
    808808        }
    809         kernels->solution1 = psMatrixLUSolve(kernels->solution1, luMatrix, sumVector, permutation);
     809        kernels->solution1 = psMatrixLUSolution(kernels->solution1, luMatrix, sumVector, permutation);
    810810
    811811        psFree(sumVector);
Note: See TracChangeset for help on using the changeset viewer.