-
Notifications
You must be signed in to change notification settings - Fork 8
/
standard.py
40 lines (40 loc) · 1.84 KB
/
standard.py
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
# Standard modules used
from collections import namedtuple
from math import ceil, \
floor, \
factorial, \
pi, \
sqrt
from matplotlib import pyplot as plt
from matplotlib import cm
from random import random
from scipy import logical_not as lnot
from scipy import maximum as mx
from scipy import minimum as mn
from scipy import amax, \
amin, \
array, \
append, \
concatenate, \
copy, \
cos, \
delete, \
dot, \
empty, \
linspace, \
log, \
log2, \
log10, \
matrix, \
meshgrid, \
multiply, \
ndarray, \
ones, \
outer, \
prod, \
sin, \
reshape, \
tile, \
transpose, \
zeros
from scipy.linalg import solve