Index: /trunk/psLib/src/math/psPolynomialMD.c
===================================================================
--- /trunk/psLib/src/math/psPolynomialMD.c	(revision 24089)
+++ /trunk/psLib/src/math/psPolynomialMD.c	(revision 24090)
@@ -304,5 +304,5 @@
     polynomialMDFill(poly->fitMatrix);
 
-    poly->LU = psMatrixLUD(poly->LU, &poly->LUperm, poly->fitMatrix); // LU-decomposed matrix
+    poly->LU = psMatrixLUDecomposition(poly->LU, &poly->LUperm, poly->fitMatrix); // LU-decomposed matrix
     if (!poly->LU) {
         psError(PS_ERR_UNKNOWN, false, "Unable to LU-Decompose least-squares matrix.");
@@ -310,5 +310,5 @@
     }
 
-    poly->coeff = psMatrixLUSolve(poly->coeff, poly->LU, poly->fitVector, poly->LUperm);
+    poly->coeff = psMatrixLUSolution(poly->coeff, poly->LU, poly->fitVector, poly->LUperm);
     if (!poly->coeff) {
         psError(PS_ERR_UNKNOWN, false, "Unable to solve least-squares equation.");
@@ -447,10 +447,10 @@
 
     // Solve least-squares equation
-    *lu = psMatrixLUD(*lu, perm, matrix);
+    *lu = psMatrixLUDecomposition(*lu, perm, matrix);
     if (!*lu) {
         psError(PS_ERR_UNKNOWN, false, "Unable to LU-Decompose least-squares matrix.");
         return false;
     }
-    poly->coeff = psMatrixLUSolve(poly->coeff, *lu, vector, *perm);
+    poly->coeff = psMatrixLUSolution(poly->coeff, *lu, vector, *perm);
     if (!poly->coeff) {
         psError(PS_ERR_UNKNOWN, false, "Unable to solve least-squares equation.");
