Home | History | Annotate | Download | only in tools

Lines Matching refs:mMatrix

26     private double[][] mMatrix;
44 return mMatrix;
54 mMatrix = new double[mDimension +1][mDimension + mDimension +1];
107 mMatrix[i][j] = Q[i][j];
110 mMatrix[i][mDimension + 1 + j] = c[i][j];
113 if (!gaussianElimination(mMatrix)) {
126 res[j] += point[i] * mMatrix[i][j+ mDimension +1];
128 res[j] += mMatrix[mDimension][j+ mDimension +1];
137 str += "x" + i + " * " + mMatrix[i][j+mDimension+1] + " + ";
139 str += mMatrix[mDimension][j+mDimension+1];