8000 Add initial linear algebra function specifications by kgryte · Pull Request #20 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Add initial linear algebra function specifications #20

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 21 commits into from
Sep 8, 2020
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
Next Next commit
Escape markup
  • Loading branch information
kgryte committed Aug 25, 2020
commit 8f65e94158de1d1db8e3e149037bced67d877382
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 @@ -152,7 +152,7 @@ Computes the matrix or vector norm of `a`.
| -1 | min(sum(abs(x), axis=0)) | sum(1./abs(a))**(-1) |
| -2 | smallest singular value | 1./sqrt(sum(1./abs(a)**2)) |
| -inf | min(sum(abs(x), axis=1)) | min(abs(a)) |
| (int,float < 1) | - | sum(abs(a)**ord)**(1./ord) |
| (int,float < 1) | - | sum(abs(a)\*\*ord)\*\*(1./ord) |

When `ord` is `None`, the following norms must be the default norms:

Expand Down
0