home / github / issues

Menu
  • Search all tables
  • GraphQL API

issues: 495799492

This data as json

id node_id number title user state locked assignee milestone comments created_at updated_at closed_at author_association active_lock_reason draft pull_request body reactions performed_via_github_app state_reason repo type
495799492 MDU6SXNzdWU0OTU3OTk0OTI= 3322 Linear algebra support 38346144 closed 0     9 2019-09-19T13:27:28Z 2022-04-18T16:14:04Z 2022-04-18T16:14:03Z NONE      

Share we support linear algebra? Thank you for your hardworking, I'm so happy that we do not need to rember the damned "axis number" in normal situations. But sometime we should still use the functions of linear algebra like LUdepart or determinant.
Follow is the codes to explain some personal idea of new functions API.

code

```

Adata = np.random.randn(4,4,7) A = DataArray(Adata, dims=('x','y','z')) L, U = LUdepart(A, dims1='x', dims2='y',newdims='a') ```

result

```

L DataArray(x:4, z:7, a: 4) ... U DataArray(y:4, z:7, a: 4) ... L@U == A True ``` I think other essential linear algebra function in numpy can be wraped by this way so that we will can use their named axis version. Do you have any suggestions? Finally, thankyou again for your work.

{
    "url": "https://api.github.com/repos/pydata/xarray/issues/3322/reactions",
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  completed 13221727 issue

Links from other tables

  • 1 row from issues_id in issues_labels
  • 9 rows from issue in issue_comments
Powered by Datasette · Queries took 0.513ms · About: xarray-datasette