Lines Matching refs:decomposition
35 Here, ColPivHouseholderQR is a QR decomposition with column pivoting. It's a good compromise for th…
101 choice is then the LDLT decomposition. Here's an example, also demonstrating that using a general
157 allows Eigen to avoid performing a LU decomposition, and instead use formulas that are more efficie…
170 The best way to do least squares solving is with a SVD decomposition. Eigen provides one as the Jac…
182 Another way, potentially faster but less reliable, is to use a LDLT decomposition
188 In the above examples, the decomposition was computed at the same time that the decomposition objec…
191 decomposition object.
196 on an already-computed decomposition, reinitializing it.
208 Finally, you can tell the decomposition constructor to preallocate storage for decomposing matrices…
211 passing the size to the decomposition constructor, as in this example:
239 on the decomposition but is typically the diagonal size times machine epsilon. While this is the be…
241 on your decomposition object before calling rank() or any other method that needs to use such a thr…
242 The decomposition itself, i.e. the compute() method, is independent of the threshold. You don't nee…
243 decomposition after you've changed the threshold.