abschlussarbeit-template/code/pyplot1.py

5 lines
127 B
Python

import numpy as np, matplotlib.pyplot as plt
x = np.arange(-1.3, 1.3, .01)
plt.plot(x, x**2)
plt.savefig("bilder/pyplot1.png")