forked from peterdsharpe/AeroSandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
23 lines (19 loc) · 825 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
### Import everything from NumPy
from numpy import *
### Overwrite some functions
from aerosandbox.numpy.array import *
from aerosandbox.numpy.arithmetic import *
from aerosandbox.numpy.calculus import *
from aerosandbox.numpy.conditionals import *
from aerosandbox.numpy.finite_difference_operators import *
from aerosandbox.numpy.integrate import *
from aerosandbox.numpy.interpolate import *
from aerosandbox.numpy.linalg_top_level import *
import aerosandbox.numpy.linalg as linalg
from aerosandbox.numpy.logicals import *
from aerosandbox.numpy.rotations import *
from aerosandbox.numpy.spacing import *
from aerosandbox.numpy.surrogate_model_tools import *
from aerosandbox.numpy.trig import *
### Force-overwrite built-in Python functions.
from numpy import round # TODO check that min, max are properly imported