Changeset 24093
- Timestamp:
- May 6, 2009, 2:23:35 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/imcombine/pmSubtractionEquation.c
r23839 r24093 798 798 799 799 psVector *permutation = NULL; // Permutation vector, required for LU decomposition 800 psImage *luMatrix = psMatrixLUD (NULL, &permutation, sumMatrix);800 psImage *luMatrix = psMatrixLUDecomposition(NULL, &permutation, sumMatrix); 801 801 psFree(sumMatrix); 802 802 if (!luMatrix) { … … 807 807 return NULL; 808 808 } 809 kernels->solution1 = psMatrixLUSol ve(kernels->solution1, luMatrix, sumVector, permutation);809 kernels->solution1 = psMatrixLUSolution(kernels->solution1, luMatrix, sumVector, permutation); 810 810 811 811 psFree(sumVector);
Note:
See TracChangeset
for help on using the changeset viewer.
