HomeSort by relevance Sort by last modified time
    Searched defs:cachedL (Results 1 - 3 of 3) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldLUDecompositionImpl.java 59 private FieldMatrix<T> cachedL;
83 cachedL = null;
157 if ((cachedL == null) && !singular) {
159 cachedL = new Array2DRowFieldMatrix<T>(field, m, m);
163 cachedL.setEntry(i, j, luI[j]);
165 cachedL.setEntry(i, i, field.getOne());
168 return cachedL;
LUDecompositionImpl.java 54 private RealMatrix cachedL;
89 cachedL = null;
166 if ((cachedL == null) && !singular) {
168 cachedL = MatrixUtils.createRealMatrix(m, m);
172 cachedL.setEntry(i, j, luI[j]);
174 cachedL.setEntry(i, i, 1.0);
177 return cachedL;
CholeskyDecompositionImpl.java 50 private RealMatrix cachedL;
108 cachedL = null;
157 if (cachedL == null) {
158 cachedL = getLT().transpose();
160 return cachedL;

Completed in 443 milliseconds