8000 Add complex number support to `linalg.qr` by kgryte · Pull Request #548 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Add complex number support to linalg.qr #548

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 2 commits into from
Dec 13, 2022
Merged
Changes from 1 commit
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
8000
Diff view
Diff view
Prev Previous commit
Update copy
  • Loading branch information
kgryte committed Dec 5, 2022
commit 825cc05e7026d8db8cc4a819f7a0d5c41748a826
2 changes: 2 additions & 0 deletions spec/API_specification/array_api/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,8 @@ def qr(x: array, /, *, mode: Literal['reduced', 'complete'] = 'reduced') -> Tupl

The reduced QR decomposition equals with the complete QR decomposition when :math:`n \qeq m` (wide matrix).

When ``x`` is a stack of matrices, the function must compute the QR decomposition for each matrix in the stack.

.. note::
Whether an array library explicitly checks whether an input array is a full column rank matrix (or a stack of full column rank matrices) is implementation-defined.

Expand Down
0