We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
R
1 parent 75504b5 commit 7916b73Copy full SHA for 7916b73
src/qr.jl
@@ -366,6 +366,11 @@ The individual components of the decomposition `F` can be retrieved via property
366
- `F.p`: the permutation vector of the pivot ([`QRPivoted`](@ref) only)
367
- `F.P`: the permutation matrix of the pivot ([`QRPivoted`](@ref) only)
368
369
+!!! note
370
+ Each reference to the upper triangular factor via `F.R` allocates a new array.
371
+ It is therefore advisable to cache that array, say, by `R = F.R` and continue working
372
+ with `R`.
373
+
374
Iterating the decomposition produces the components `Q`, `R`, and if extant `p`.
375
376
The following functions are available for the `QR` objects: [`inv`](@ref), [`size`](@ref),
0 commit comments