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()
|