Updated graph library and added options.

This commit is contained in:
Teal Dulcet
2023-03-13 07:29:43 -07:00
parent 73411c18cb
commit 949e46b297
7 changed files with 269 additions and 155 deletions

View File

@@ -11,9 +11,16 @@ import graphs
import tables
def afunction(x): return x + 1
def function1(x): return 2 * x
def function2(x): return x ** 2
def afunction(x):
return x + 1
def function1(x):
return 2 * x
def function2(x):
return x ** 2
rows = 5