Skip to content

Commit

Permalink
20210917
Browse files Browse the repository at this point in the history
  • Loading branch information
sun1638650145 committed Sep 17, 2021
1 parent a1cabfc commit 85ed7f9
Show file tree
Hide file tree
Showing 2 changed files with 372 additions and 235 deletions.
6 changes: 3 additions & 3 deletions API.md
Original file line number Diff line number Diff line change
Expand Up @@ -1826,9 +1826,9 @@ x = np.mean(a=arr, # array_like|输入的数据.
```python
import numpy as np

x_crood = np.linspace(0, 4, 5)
y_crood = np.linspace(0, 4, 5)
vec_mat = np.meshgrid(x_crood, y_crood) # array_like|坐标向量.
x_coord = np.linspace(0, 4, 5)
y_coord = np.linspace(0, 4, 5)
vec_mat = np.meshgrid(x_coord, y_coord) # array_like|坐标向量.
```

## 8.32.nonzero()
Expand Down
Loading

0 comments on commit 85ed7f9

Please sign in to comment.