8000 Add specification for computing the qr factorization by kgryte · Pull Request #126 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Add specification for computing the qr factorization #126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 12, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
8000 Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update copy
  • Loading branch information
kgryte committed Mar 24, 2021
commit 492ef82c2de831cf43d64ea3742a244aa8fc3d03
2 changes: 1 addition & 1 deletion spec/API_specification/linear_algebra_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ TODO
(function-qr)=
### qr(x, /, *, mode='reduced')

Computes the qr factorization of a matrix (or stack of matrices), where `q` is an orthonormal matrix (or stack of matrices) and `r` is an upper-triangular matrix (or stack of matrices).
Computes the qr factorization of a matrix (or a stack of matrices), where `q` is an orthonormal matrix (or a stack of matrices) and `r` is an upper-triangular matrix (or a stack of matrices).

#### Parameters

Expand Down
0