Skip to content

Commit b2bc982

Browse files
Create README.md
Create python-numpy-examples README.md file
1 parent 32ebf43 commit b2bc982

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed

README.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# python-numpy-examples
2+
3+
```python
4+
5+
import numpy as np # import numpy
6+
```
7+
---
8+
Examples
9+
------
10+
11+
* numpy array
12+
13+
> create array
14+
15+
> array access index
16+
17+
> arange
18+
19+
> zeros
20+
21+
> ones
22+
23+
> linspace
24+
25+
> eye
26+
27+
> random randint
28+
29+
> random rand
30+
31+
> random randn
32+
33+
> reshape
34+
35+
> max & argmax
36+
37+
> compute determinant
38+
39+
[example notes](https://github.com/serdaralkancode/python-numpy-examples/blob/master/Numpy%20Array.ipynb)
40+
41+
* numpy array index and slicing
42+
43+
> slicing
44+
45+
> referance
46+
47+
> copy
48+
49+
> matris slicing
50+
51+
> filter
52+
53+
[example notes](https://github.com/serdaralkancode/python-numpy-examples/blob/master/Numpy%20Array%20Index%20and%20Slicing.ipynb)
54+
55+
* numpy array operations
56+
57+
> add
58+
59+
> substract
60+
61+
> square
62+
63+
> extraction
64+
65+
[example notes](https://github.com/serdaralkancode/python-numpy-examples/blob/master/Numpy%20Array%20Operations.ipynb)
66+
67+

0 commit comments

Comments
 (0)