first commit

This commit is contained in:
David Brazda
2023-04-12 21:00:03 +02:00
commit af9e944928
158 changed files with 19422 additions and 0 deletions

View File

@ -0,0 +1,17 @@
import scipy.interpolate as spi
import matplotlib.pyplot as plt
x = [2, 4, 6, 8, 10, 12, 14, 16, 18, 20]
y = [4, 7, 11, 16, 22, 29, 38, 49, 63, 80]
y_interp = spi.interp1d(x, y)
#find y-value associated with x-value of 13
#print(y_interp(13))
#create plot of x vs. y
#plt.plot(x, y, '-ob')