摘要:
import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy.interpolate import interp1d, PchipInterpolator, CubicSpline from sci 阅读全文
posted @ 2024-11-12 13:55
方~~
阅读(26)
评论(0)
推荐(0)
摘要:
import numpy as np import matplotlib.pyplot as plt from scipy.optimize import curve_fit, leastsq, least_squares from scipy.constants import e def g(x, 阅读全文
posted @ 2024-11-12 13:51
方~~
阅读(16)
评论(0)
推荐(0)
摘要:
import numpy as np import matplotlib.pyplot as plt from scipy.interpolate import griddata def f(x, y): x2 = x**2 return (x2 - 2*x) * np.exp(-x2 - y**2 阅读全文
posted @ 2024-11-12 13:47
方~~
阅读(45)
评论(0)
推荐(0)
摘要:
import numpy as np import matplotlib.pyplot as plt from scipy.interpolate import interp1d, CubicSpline T = np.array([700, 720, 740, 760, 780]) V = np. 阅读全文
posted @ 2024-11-12 13:44
方~~
阅读(22)
评论(0)
推荐(0)
摘要:
import numpy as np import scipy.interpolate as spi import scipy.integrate as spi_integrate def g(x): return ((3*x**2 + 4*x + 6) * np.sin(x)) / (x**2 + 阅读全文
posted @ 2024-11-12 13:41
方~~
阅读(21)
评论(0)
推荐(0)
浙公网安备 33010602011771号