generated from eanorambuena/Driver
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanual_test.py
More file actions
30 lines (24 loc) · 733 Bytes
/
manual_test.py
File metadata and controls
30 lines (24 loc) · 733 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
#############################################
wannaBuildRelease = False ## ** Build panel **
############################################# Set
import eggdriver as ed ## wannaBuildRelease = True
if wannaBuildRelease: ## to build a new release!
ed.buildEggdriver(True, '0.0.2') ##
#############################################
# ed.header("uwu")
theta = ed.pi/3
print(ed.sin(theta), ed.cos(theta), ed.tan(theta))
p = ed.sin_serie
print(p.eval(theta))
ed.derive(p)
print(p.eval(theta))
c = ed.Matrix("""
| 1 1 2 3 4 |
| 0 1 2 3 4 |
| 1 1 2 3 4 |
| 1 1 2 3 4 |
| 1 1 2 3 4 |
""")
c.display()
a = ed.Vector("[ 1 2 3 4 5 6 30 0 9]")
a.display()