Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/functions-reference/matrix_operations.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2359,8 +2359,8 @@ dimensions as A
\index{{\tt \bfseries qr }!{\tt (matrix A): tuple(matrix, matrix)}|hyperpage}
`tuple(matrix, matrix)` **`qr`**`(matrix A)`<br>\newline
Returns both portions of the QR decomposition of A. The first element ("Q") is
the orthonormal matrix in the thin QR decomposition and the second element ("R")
is upper triangular. This function is equivalent to `(qr_Q(A), qr_R(A))` but
the orthogonal matrix in the fat QR decomposition and the second element ("R")
is upper trapezoidal. This function is equivalent to `(qr_Q(A), qr_R(A))` but
with a lower computational cost due to the shared work between the two results.
{{< since 2.33 >}}

Expand Down