-
Notifications
You must be signed in to change notification settings - Fork 1
Usage
David Maranto edited this page Nov 8, 2022
·
12 revisions
- set up environement as in readme
- click run
- see plots
- play with variables
If you want to draw plots in higher dimensions that 2D, here's how. The hypercast()
function is built exactly for this purpose.
Code snippet:
from architect.libs.utillib import hypercast
x = np.arange(start=0, stop=10, step=1)
y = np.arange(start=0, stop=20, step=1)
x_hyper, y_hyper = hypercast(a, b)
z = some_function(a, b)