- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个带有单峰的功率谱密度,我试图使用自定义函数(简单谐振子)来拟合该功率谱密度。我输入的初始参数根据使用原始数据绘制的结果看起来相当接近,但是 curve_fit 函数无法合理地拟合数据。
这是在 Windows 10 计算机上使用 python 3.7。我尝试简化为最小数据集以解决问题,但似乎无法弄清楚。
import numpy as np
import matplotlib.pyplot as plt
from scipy.optimize import curve_fit
def SHO(f,f0,a,b,Q):
power_app = (a*(f0**4))/((f**2-f0**2)**2 + (f*f0/Q)**2)+b
return power_app
x = np.array([20015.69858713, 20054.94505495, 20094.19152276, 20133.43799058,
20172.6844584 , 20211.93092622, 20251.17739403, 20290.42386185,
20329.67032967, 20368.91679749, 20408.16326531, 20447.40973312,
20486.65620094, 20525.90266876, 20565.14913658, 20604.3956044 ,
20643.64207221, 20682.88854003, 20722.13500785, 20761.38147567,
20800.62794349, 20839.8744113 , 20879.12087912, 20918.36734694,
20957.61381476, 20996.86028257, 21036.10675039, 21075.35321821,
21114.59968603, 21153.84615385, 21193.09262166, 21232.33908948,
21271.5855573 , 21310.83202512, 21350.07849294, 21389.32496075,
21428.57142857, 21467.81789639, 21507.06436421, 21546.31083203,
21585.55729984, 21624.80376766, 21664.05023548, 21703.2967033 ,
21742.54317111, 21781.78963893, 21821.03610675, 21860.28257457,
21899.52904239, 21938.7755102 , 21978.02197802, 22017.26844584,
22056.51491366, 22095.76138148, 22135.00784929, 22174.25431711,
22213.50078493, 22252.74725275, 22291.99372057, 22331.24018838,
22370.4866562 , 22409.73312402, 22448.97959184, 22488.22605965,
22527.47252747, 22566.71899529, 22605.96546311, 22645.21193093,
22684.45839874, 22723.70486656, 22762.95133438, 22802.1978022 ,
22841.44427002, 22880.69073783, 22919.93720565, 22959.18367347,
22998.43014129])
y = np.array([5.65544381e-18, 5.45458563e-18, 4.89893664e-18, 4.91109125e-18,
4.93294827e-18, 5.05712667e-18, 4.60680439e-18, 4.93761900e-18,
5.25185317e-18, 5.71913103e-18, 5.88133465e-18, 5.51506519e-18,
5.28196380e-18, 5.37739619e-18, 7.11067243e-18, 7.38655966e-18,
5.79091461e-18, 6.70951199e-18, 7.21589026e-18, 8.57034517e-18,
1.03078084e-17, 8.62319615e-18, 8.85873439e-18, 9.51253497e-18,
8.56661324e-18, 7.84093758e-18, 7.91955750e-18, 8.11798984e-18,
7.45548785e-18, 8.99928113e-18, 1.11020034e-17, 1.39963873e-17,
1.34092392e-17, 1.60334619e-17, 1.55794254e-17, 1.20782547e-17,
1.52164359e-17, 1.86563455e-17, 2.09536229e-17, 2.47011325e-17,
2.64443357e-17, 3.23877863e-17, 3.82919169e-17, 4.36682960e-17,
4.18201004e-17, 6.53800912e-17, 9.40340341e-17, 1.20969462e-16,
1.75570644e-16, 2.59463564e-16, 3.83125755e-16, 5.63178280e-16,
6.19699349e-16, 5.95325659e-16, 4.71509035e-16, 3.39690667e-16,
1.90432901e-16, 2.05109520e-16, 2.71918806e-16, 2.42928468e-16,
1.33335030e-16, 7.93620990e-17, 5.58089972e-17, 3.71690525e-17,
4.72718831e-17, 3.73266547e-17, 2.06817670e-17, 2.01518733e-17,
2.40691290e-17, 1.76559440e-17, 1.88179105e-17, 2.23351216e-17,
2.33958117e-17, 1.87067097e-17, 1.59996492e-17, 1.02671264e-17,
1.21233722e-17])
p_guess = [22000,10e-19,10e-18,20]
popt, pcov = curve_fit(SHO, x, y,
p0 = p_guess,
bounds = ((0,0,0,0),(np.inf,np.inf,np.inf,np.inf)))
plt.plot(x,y,'bo')
plt.plot(x,SHO(x,*p_guess),'r-')
#plt.plot(x,SHO(x,*popt),'g-')
plt.show()
我已经注释掉了最终参数估计生成的线,但您可以在图中看到初始猜测相对接近。
如果您取消注释该行,那么很明显,最终的拟合效果甚至比最初的猜测还要差得多。
最佳答案
这里的示例代码似乎给出了很好的拟合,使用 scipy 的 Differential_evolution 遗传算法来创建初始参数估计。该模块使用拉丁超立方算法来确保对参数空间的彻底搜索,需要在搜索范围内进行。对于大多数边界,我使用了数据最大值和最小值,对于 Q 的边界,我使用 -10 和 +10 来括住 p0 值。初始参数值的范围比具体值更容易确定。
import numpy, scipy, matplotlib
import matplotlib.pyplot as plt
from scipy.optimize import curve_fit
from scipy.optimize import differential_evolution
import warnings
xData = numpy.array([20015.69858713, 20054.94505495, 20094.19152276, 20133.43799058,
20172.6844584 , 20211.93092622, 20251.17739403, 20290.42386185,
20329.67032967, 20368.91679749, 20408.16326531, 20447.40973312,
20486.65620094, 20525.90266876, 20565.14913658, 20604.3956044 ,
20643.64207221, 20682.88854003, 20722.13500785, 20761.38147567,
20800.62794349, 20839.8744113 , 20879.12087912, 20918.36734694,
20957.61381476, 20996.86028257, 21036.10675039, 21075.35321821,
21114.59968603, 21153.84615385, 21193.09262166, 21232.33908948,
21271.5855573 , 21310.83202512, 21350.07849294, 21389.32496075,
21428.57142857, 21467.81789639, 21507.06436421, 21546.31083203,
21585.55729984, 21624.80376766, 21664.05023548, 21703.2967033 ,
21742.54317111, 21781.78963893, 21821.03610675, 21860.28257457,
21899.52904239, 21938.7755102 , 21978.02197802, 22017.26844584,
22056.51491366, 22095.76138148, 22135.00784929, 22174.25431711,
22213.50078493, 22252.74725275, 22291.99372057, 22331.24018838,
22370.4866562 , 22409.73312402, 22448.97959184, 22488.22605965,
22527.47252747, 22566.71899529, 22605.96546311, 22645.21193093,
22684.45839874, 22723.70486656, 22762.95133438, 22802.1978022 ,
22841.44427002, 22880.69073783, 22919.93720565, 22959.18367347,
22998.43014129])
yData = numpy.array([5.65544381e-18, 5.45458563e-18, 4.89893664e-18, 4.91109125e-18,
4.93294827e-18, 5.05712667e-18, 4.60680439e-18, 4.93761900e-18,
5.25185317e-18, 5.71913103e-18, 5.88133465e-18, 5.51506519e-18,
5.28196380e-18, 5.37739619e-18, 7.11067243e-18, 7.38655966e-18,
5.79091461e-18, 6.70951199e-18, 7.21589026e-18, 8.57034517e-18,
1.03078084e-17, 8.62319615e-18, 8.85873439e-18, 9.51253497e-18,
8.56661324e-18, 7.84093758e-18, 7.91955750e-18, 8.11798984e-18,
7.45548785e-18, 8.99928113e-18, 1.11020034e-17, 1.39963873e-17,
1.34092392e-17, 1.60334619e-17, 1.55794254e-17, 1.20782547e-17,
1.52164359e-17, 1.86563455e-17, 2.09536229e-17, 2.47011325e-17,
2.64443357e-17, 3.23877863e-17, 3.82919169e-17, 4.36682960e-17,
4.18201004e-17, 6.53800912e-17, 9.40340341e-17, 1.20969462e-16,
1.75570644e-16, 2.59463564e-16, 3.83125755e-16, 5.63178280e-16,
6.19699349e-16, 5.95325659e-16, 4.71509035e-16, 3.39690667e-16,
1.90432901e-16, 2.05109520e-16, 2.71918806e-16, 2.42928468e-16,
1.33335030e-16, 7.93620990e-17, 5.58089972e-17, 3.71690525e-17,
4.72718831e-17, 3.73266547e-17, 2.06817670e-17, 2.01518733e-17,
2.40691290e-17, 1.76559440e-17, 1.88179105e-17, 2.23351216e-17,
2.33958117e-17, 1.87067097e-17, 1.59996492e-17, 1.02671264e-17,
1.21233722e-17])
def func(f,f0,a,b,Q):
power_app = (a*(f0**4))/((f**2-f0**2)**2 + (f*f0/Q)**2)+b
return power_app
# function for genetic algorithm to minimize (sum of squared error)
def sumOfSquaredError(parameterTuple):
warnings.filterwarnings("ignore") # do not print warnings by genetic algorithm
val = func(xData, *parameterTuple)
return numpy.sum((yData - val) ** 2.0)
def generate_Initial_Parameters():
parameterBounds = []
parameterBounds.append([min(xData), max(xData)]) # search bounds forf0
parameterBounds.append([min(yData), max(yData)]) # search bounds for a
parameterBounds.append([min(yData), max(yData)]) # search bounds for b
parameterBounds.append([10.0, 30.0]) # search bounds for Q
# "seed" the numpy random number generator for repeatable results
result = differential_evolution(sumOfSquaredError, parameterBounds, seed=3)
return result.x
# by default, differential_evolution completes by calling curve_fit() using parameter bounds
geneticParameters = generate_Initial_Parameters()
# now call curve_fit without passing bounds from the genetic algorithm,
# just in case the best fit parameters are aoutside those bounds
fittedParameters, pcov = curve_fit(func, xData, yData, geneticParameters)
print('Fitted parameters:', fittedParameters)
print()
modelPredictions = func(xData, *fittedParameters)
absError = modelPredictions - yData
SE = numpy.square(absError) # squared errors
MSE = numpy.mean(SE) # mean squared errors
RMSE = numpy.sqrt(MSE) # Root Mean Squared Error, RMSE
Rsquared = 1.0 - (numpy.var(absError) / numpy.var(yData))
print()
print('RMSE:', RMSE)
print('R-squared:', Rsquared)
print()
##########################################################
# graphics output section
def ModelAndScatterPlot(graphWidth, graphHeight):
f = plt.figure(figsize=(graphWidth/100.0, graphHeight/100.0), dpi=100)
axes = f.add_subplot(111)
# first the raw data as a scatter plot
axes.plot(xData, yData, 'D')
# create data for the fitted equation plot
xModel = numpy.linspace(min(xData), max(xData))
yModel = func(xModel, *fittedParameters)
# now the model as a line plot
axes.plot(xModel, yModel)
axes.set_xlabel('X Data') # X axis data label
axes.set_ylabel('Y Data') # Y axis data label
plt.show()
plt.close('all') # clean up after using pyplot
graphWidth = 800
graphHeight = 600
ModelAndScatterPlot(graphWidth, graphHeight)
关于python - 如何使用 scipy.optimize.curvefit 修复 PSD 拟合不良,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55735699/
我将一个 div 设置为 100% 宽度,当以 1024 分辨率查看页面时,宽度应从 100% 变为 1000px,我让它与@media 查询一起正常工作,并且在 FF、safari chrome 上
希望有人能帮助我,我已经被困了几天了。 将我的 Domino 服务器更新到 9.01 Fix 3 后,我在 javascript 控制台上不断收到错误消息: TypeError: this.edito
我们正在使用一个基于RMI的java应用程序。当我们运行应用程序时,即使应用程序处于理想阶段,内存使用量仍然不断增加。我们主要使用Vector和散列图数据结构。如何最大限度地减少java内存使用/修复
概述 Internet Download Manager (IDM)是最流行的 Windows 下载管理器。如果你平时工作中使用过IDM,您会惊叹 IDM 下载文件的速度有多快。IDM
当我打开 brave 浏览器时,会打开一个窗口(如下所示)。它并没有真正干扰浏览器的处理。但令人担忧的是为什么这种情况一直发生...... Error On Opening Brave Browser
这是我今天在求职面试中被问到的一个问题: 看下面的代码: int n=20; for (int i =0; i
我不小心删除了/opt/local/bin/perl5.8.9 ,这似乎是 macports 编译的 perl 的主要二进制文件。 现在我有很多取决于 perl5 的端口,但不想卸载并重新安装所有端口
>>>flip fix (0 :: Int) (\a b -> putStrLn "abc") Output: "abc" 这是使用翻转修复的简化版本。 我在一些 YouTube 视频中看到了这种使用
这个问题已经有答案了: How can I fix 'android.os.NetworkOnMainThreadException'? (64 个回答) 已关闭 3 年前。 我在 Android 应
def main(): cash = float(input("How much money: ")) coins = 0 def changeCounter(n): whil
前一周我遇到了类似的问题,查询需要永远运行。在编写此查询时,我尝试应用从其他查询中学到的一些知识,但执行起来需要很长时间。 运行查询的两个单独部分时,每个部分需要 2 分钟才能完成,这是可以接受的,但
下午,我的 CSS 有问题。第三个下拉菜单放错了,我没有解决办法。 这是我想要的: 之前: http://i53.tinypic.com/2qu85z8.png 之后: http://i51.tiny
更新方法: override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingS
我知道这是一个很多人都遇到过的问题,但我不熟悉 Less 并且是 Bootstrap 的新手,我正在寻找一种全 CSS 解决方案来防止我的导航栏折叠到 768 像素以下:
在我的布局中,我创建了以下 jsfiddle 托管的可调整大小的粘性页脚。但是,在调整大小时它与内容重叠。有没有办法让它在所有浏览器上都能响应? http://jsfiddle.net/9aLc0mg
我想要实现的目标 racer-offset 是为了让用户可以设置图像可以以 px 为单位移动多远。偏移量管理偏移量。 Speed-racer 告诉我们图像在滚动过程中移动的速度。我的问题是它不会停止。
我有一个简单的自动换行函数,它接受一个长字符串作为输入,然后将该字符串分成更小的字符串,并将它们添加到一个数组中,以便稍后输出。现在最后一两个字没有输出。这是主要问题。但是,我还想改进功能。我知道这有
我试图在使用每个 slider 之前禁用“下一步”按钮,我不确定为什么在单击不再是 class="not-clicked"的同一个 slider 时取消禁用该按钮. JSFiddle: (这里看起来有
这个问题已经有答案了: What is a NullPointerException, and how do I fix it? (12 个回答) 已关闭 8 年前。 如何让程序输出所有信息? IT
On this page ,在“生活”下有一个带有自动生成的子菜单的菜单。子菜单存在一些问题(它会闪烁并改变大小——如果你滚动它就会看到)。我需要以某种方式覆盖它当前正在读取的 css 并使其统一。
我是一名优秀的程序员,十分优秀!