Skip to article frontmatterSkip to article content
a = 2
b = 3
print(a+b)
import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 10, 100)
y = np.sin(x)

plt.figure()
plt.xlabel('x')
plt.ylabel('y')

plt.plot(x, y)
plt.show()