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

Skip to content

Add complex number support to linalg.solve #566

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 14, 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
Diff view
Diff view
Prev Previous commit
Update copy
  • Loading branch information
kgryte committed Dec 12, 2022
commit dfa0dc6435fed06b5505022c35ea72ed868e2c71
2 changes: 1 addition & 1 deletion spec/API_specification/array_api/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def solve(x1: array, x2: array, /) -> array:
.. note::
Whether an array library explicitly checks whether ``x1`` is invertible is implementation-defined.

When ``x`` is a stack of matrices, the function must compute a solution for each matrix in the stack.
When ``x1`` and/or ``x2`` is a stack of matrices, the function must compute a solution for each matrix in the stack.

Parameters
----------
Expand Down
0