From 3ed4300cab29aa1e85ce122937821be716b5955a Mon Sep 17 00:00:00 2001 From: Brian Ward Date: Fri, 10 Apr 2026 14:50:39 -0400 Subject: [PATCH] Fix copy/paste error in qr() documentation --- src/functions-reference/matrix_operations.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions-reference/matrix_operations.qmd b/src/functions-reference/matrix_operations.qmd index dded30e43..430d4c83e 100644 --- a/src/functions-reference/matrix_operations.qmd +++ b/src/functions-reference/matrix_operations.qmd @@ -2359,8 +2359,8 @@ dimensions as A \index{{\tt \bfseries qr }!{\tt (matrix A): tuple(matrix, matrix)}|hyperpage} `tuple(matrix, matrix)` **`qr`**`(matrix A)`
\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 >}}