- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
或
splprep
不能使用它自己的结?我想弄清楚如何在 scipy.interpolate.splprep
中设置结。在非周期性情况下我成功了,即我可以重现 this SE example .
不过,在周期性边界条件 (PBC) 的情况下,我遇到了一个问题。这里 scipy.interpolate.splprep
甚至不能使用它自己的结,如这个例子所示:
import numpy as np
from scipy.interpolate import splev, splrep
import scipy
print "my scipy version: ", scipy.__version__
srate = 192000.
freq = 1200.
timeList = [ i / srate for i in range( int( srate / freq + 1 ) ) ]
signal = np.fromiter( ( np.sin( 2 * np.pi * freq * t ) for t in timeList ), np.float )
spl = splrep( timeList, signal, per=1 )
knots = spl[0]
spl = splrep( timeList, signal, t=knots, per=1 )
给出:
my scipy version: 1.0.0
Traceback (most recent call last):
File "splrevtest.py", line 15, in <module>
spl = splrep( timeList, signal, t=knots, per=1 )
File "/somepath/python2.7/site-packages/scipy-1.0.0-py2.7-linux-/python2.7/site-packages/scipy-1.0.0-py2.7-linux-x86_64.egg/scipy/interpolate/fitpack.py", line 289, in splrep
res = _impl.splrep(x, y, w, xb, xe, k, task, s, t, full_output, per, quiet)
File "/somepath/python2.7/site-packages/scipy-1.0.0-py2.7-linux-x86_64.egg/scipy/interpolate/_fitpack_impl.py", line 514, in splrep
raise _iermess[ier][1](_iermess[ier][0])
ValueError: Error on input data
此外,如果您绘制第一个和最后一个结,如下所示:
print timeList[-1]
print knots[:4]
print knots[-4:]
你得到了
>> 0.000833333333333
>> [-1.56250000e-05 -1.04166667e-05 -5.20833333e-06 0.00000000e+00]
>> [0.00083333 0.00083854 0.00084375 0.00084896]
表示实际数据范围外有六个点,前三个,后三个。这可能没问题,因为我们有 PBC,结与数据范围内的结相同,但无论如何都很奇怪。 (顺便说一句,这个例子在设置 per=0
时甚至不起作用。)此外,如果我手动设置点,设置数据范围之外的点会失败。如果点在数据范围内,即使 per=1
也能正常工作。比如:
import matplotlib.pyplot as plt
import numpy as np
from scipy.interpolate import splev, splrep
import scipy
x = np.linspace( 0, 1, 120 )
timeList = np.linspace( 0, 1, 15 )
signal = np.fromiter( ( np.sin( 2 * np.pi * t +.3 ) for t in timeList ), np.float )
signal[ -1 ] -= .15
myKnots=np.linspace( .05, .95, 8 )
spl = splrep( timeList, signal, t=myKnots, per=1 )
fit = splev(x,spl)
fig = plt.figure()
ax = fig.add_subplot( 1, 1, 1 )
ax.plot( timeList, signal, marker='o' )
ax.plot( x, fit , 'r' )
for i in myKnots:
ax.axvline( i )
plt.show()
提供:
我们还可以看到最后一点在 PBC 中被忽略了。
那么 scipy.interpolate.splprep
实际上在这里做什么,如果 per=1
为什么它不接受手动设置结的类似结构造。是错误吗?
我希望最后一个问题的答案是“否”,否则我在这里问这个问题就错了。
最佳答案
为了使 splrep
使用您自己的结,您应该更改:
spl = splrep(timeList, signal, t=knots, per=1)
使用内部结:
spl = splrep(timeList, signal, t=knots[4:-4], per=1)
这个界面不是很直观但是它出现在the documentation (尽管在 task
参数下而不是在 t
下)(我的重点):
If task=-1 find the weighted least square spline for a given set of knots, t. These should be interior knots as knots on the ends will be added automatically.
额外的结也记录在那里。这与结数和系数数之间的一般联系是一致的:number_of_knots = number_of_coefficients + degree + 1
。
PBC 构造中的最后一个点被忽略(如图所示),因为周期定义要求周期中最后一个点的值等于第一个点的值。这记录在 per
参数下,它说 “不使用 y[m-1] 和 w[m-1] 的值。”
(同样,不是我猜这是非常直观的界面,但这可能就是 Fortran 代码的实现方式)。
关于python - 在周期性边界条件的情况下如何在 scipy.interpolate.splprep 中设置手动结?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49191877/
谁能帮我解决以下方程的边界条件?我找不到图中显示的图形。它们用于不同的 u_0 ,一个有 4 个根,第二个有 2 个根。 import matplotlib.pyplot as plt import
我试图理解一段来自 paper concerning fluid simulations for games 的代码。我正在研究边界条件的解决方法。由于我不了解 C++,所以我遇到了额外的困难。 据我
我正在迭代一个 3 维数组(每个像素有 3 个值的图像),以将 3x3 过滤器应用于每个像素,如下所示: //For each value on the image for (i=0;i1) &
我的系统最好用对角稀疏矩阵 (Poisson) 来描述。我有我的对角线稀疏矩阵,但是,我想将边界条件(即矩阵的“边缘”)更改为零。建模者想要在具有不同边界条件的稀疏对角矩阵中描述系统一定是一种常见的情
如何在不限制面内通量分量的情况下,将 fipy 网格中边界面的法向通量明确设置为特定值? Neumann 边界条件可以指定为:(1) 固定的垂直于边界面的通量分量,或 (2) 作为面处通量的完整规范。
我是一名优秀的程序员,十分优秀!