Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-27 15:33:44 +01:00 committed by GitHub
parent 37d3f569f8
commit abfdadc4c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -842,3 +842,15 @@ Output:
[ 3 12 21]
```
Investigation of op_axes=[None, [0, -1]] because I don't understand what is happening here:
|||
|---|---|
|[None, [0, -1]] | [ 3 12 21]|
|[[0, 1], [0, -1]] | [ 3 12 21]|
|[[1, 0], [-1, 0]] | [ 3 12 21]|
|[None, [-1, 0]] | [ 9 12 15]|
|[[0, 1], [-1, 0]] | [ 9 12 15]|
|[[1,0 ], [0,-1]] | [ 9 12 15]|