forked from china-testing/python-api-tesing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
47 lines (31 loc) · 963 Bytes
/
README
File metadata and controls
47 lines (31 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
NumPy Beginner's Guide
Chapter 6 Move further with NumPy Modules
The following scripts below are part of the example code.
Python and NumPy is required for most of the scripts,
for some Matplotlib is also needed.
Every script can be run with the command
python <name of script>
decomposition.py
Demonstrates the svd function.
determinant.py
Demonstrates the det function.
eigenvalues.py
Demonstrates the eig and eigvals functions.
fourier.py
Demonstrates the fft and ifft functions.
fouriershift.py
Demonstrates the fftshift and ifftshift functions.
headortail.py
Demonstrates the binomial function.
inversion.py
Demonstrates the inv function.
lognormaldist.py
Demonstrates the lognormal function.
normaldist.py
Demonstrates the normal function.
pseudoinversion.py
Demonstrates the pinv function.
solution.py
Demonstrates the solve function.
urn.py
Demonstrates the hypergeometric function.