Files
INF6B/plotting.py
2025-10-01 10:46:21 +02:00

11 lines
181 B
Python

import matplotlib as plt
import numpy as np
def plot_sine():
xpoints = np.array([1,8])
ypoints = np.array([3,10])
plt.plot(xpoints,ypoints)
plt.show()
plot_sine()