Home
last modified time | relevance | path

Searched refs:cachedQ (Results 1 – 2 of 2) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DTriDiagonalTransformer.java52 private RealMatrix cachedQ; field in TriDiagonalTransformer
77 cachedQ = null; in TriDiagonalTransformer()
92 if (cachedQ == null) { in getQ()
93 cachedQ = getQT().transpose(); in getQ()
95 return cachedQ; in getQ()
DQRDecompositionImpl.java57 private RealMatrix cachedQ; field in QRDecompositionImpl
78 cachedQ = null; in QRDecompositionImpl()
175 if (cachedQ == null) { in getQ()
176 cachedQ = getQT().transpose(); in getQ()
178 return cachedQ; in getQ()