C_C++
Haskell
Java
LaTeX
Misc.
Python
modules
ascii_injection.py
ascii_nn_input_helper.py
better_exceptions_test.py
decorator.py
dpt.py
format.py
graph.py
group.py
int_memory.ctype.py
int_memory.py.py
leno.py
matplotlib_hw.py
nnadd.py
otest.py
snek_help.py
tkinter_filepicker_test.py
torus.py
Vim
Webdev
git
.gitignore
Makefile
10 lines
166 B
Python
10 lines
166 B
Python
import numpy as np
|
|
import matplotlib
|
|
import matplotlib.pyplot as plt
|
|
|
|
x_values = np.linspace(-10, 10)
|
|
y_values = x_values**2
|
|
|
|
plt.plot(x_values, y_values)
|
|
plt.show()
|