- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有这段代码可以解决牛顿法。但它给出了零除法错误。我不知道出了什么问题。谢谢。
import copy
tlist = [0.0, 0.12, 0.16, 0.2, 0.31, 0.34] # list of start time for the phonemes
w = w1 = w2 = w3 = w = 5
def time() :
frame = 0.04
for i, start_time in enumerate(tlist) :
end_time = tlist[i]
frame = frame * (i + 1)
poly = poly_coeff(start_time, end_time, frame)
Newton(poly)
def poly_coeff(stime, etime, f) :
"""The equation is k6 * u^3 + k5 * u^2 + k4 * u + k0 = 0. Computing the coefficients for this polynomial."""
"""Substituting the required values we get the coefficients."""
t_u = f
t0 = stime
t3 = etime
t1 = t2 = (stime + etime) / 2
w0 = w1 = w2 = w3 = w
k0 = w0 * (t_u - t0)
k1 = w1 * (t_u - t1)
k2 = w2 * (t_u - t2)
k3 = w3 * (t_u - t3)
k4 = 3 * (k1 - k0)
k5 = 3 * (k2 - 2 * k1 + k0)
k6 = k3 - 3 * k2 + 3 * k1 -k0
return [[k6,3], [k5,2], [k4,1], [k0,0]]
def poly_differentiate(poly):
""" Differentiate polynomial. """
newlist = copy.deepcopy(poly)
for term in newlist:
term[0] *= term[1]
term[1] -= 1
return newlist
def poly_substitute(poly, x):
""" Apply value to polynomial. """
sum = 0.0
for term in poly:
sum += term[0] * (x ** term[1])
return sum
def Newton(poly):
""" Returns a root of the polynomial"""
poly_diff = poly_differentiate(poly)
counter = 0
epsilon = 0.000000000001
x = float(raw_input("Enter initial guess:"))
while True:
x_n = x - (float(poly_substitute(poly, x)) / poly_substitute(poly_diff, x))
counter += 1
if abs(x_n - x) < epsilon :
break
x = x_n
print "Number of iterations:", counter
print "The actual root is:", x_n
return x_n
if __name__ == "__main__" :
time()
Enter initial guess:0.5
Traceback (most recent call last):
File "newton.py", line 79, in <module>
time()
File "newton.py", line 18, in time
Newton(poly)
File "newton.py", line 67, in Newton
x_n = x - (float(poly_substitute(poly, x)) / poly_substitute(poly_diff, x))
ZeroDivisionError: float division
最佳答案
这里有一个基本的错误:
for i, start_time in enumerate(tlist):
end_time = tlist[i]
由于 enumerate
的性质,start_time
和 end_time
具有相同的值。这意味着 poly_coeff
每次都会返回 [[0,3], [0,2], [0,1], [0,0]]
。当此结果(通过 Newton
)传递到 poly_differentiate
时,结果将是 [[0,2], [0,1], [0,0 ], [0,-1]]
.
传递到 poly_substitute
的结果将产生一个零的总和,因为在求和之前将所有列表条目乘以 term[0]
(恰好为零)他们。然后,将 - 除以零。
解决方案(根据您的评论编辑):
使用正确的 start_time
和 end_time
值。看起来你想要 end_time = tlist[i+1]
。其边缘条件是在不评估最终列表条目的情况下突破。你真正想要的是:
for i, start_time in enumerate(tlist[:-1]):
end_time = tlist[i+1]
关于python - 零除错误 : float division,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7041712/
考虑以下 Python 2 代码 from timeit import default_timer def floor(): for _ in xrange(10**7): 1
每当我运行此代码时,我都会在下面提到的行中得到零除错误。同样,当列表不是用户输入时,也不会发生该错误。错误如何出现,我该如何解决? n=int(input("Dimension of the coef
Find a regular expression which represents strings made of {a, b}, where number of a's is divisible
我有一些测试套件中的MXL文件,其中第一个度量表示除法为8(即每四分音符8个单位)。 措施4是3/4的时间,其余时间如下: 24 1 我希望在这里看到。由于24除以8等于
我需要在不使用 %、/ 或 * 的情况下判断一个数字是否能被 3 整除。给出的提示是使用atoi()函数。知道该怎么做吗? 最佳答案 当应用“将所有数字相加,看看是否能除以 3”时,当前答案都集中在十
这个问题已经有答案了: Division of integers returns 0 (2 个回答) 已关闭去年。 我的目标是在 Presto 0.212 中二除两个整数,e。 G。 1/2。天真的方
这个问题已经有答案了: Division of integers returns 0 (2 个回答) 已关闭去年。 我的目标是在 Presto 0.212 中二除两个整数,e。 G。 1/2。天真的方
我正在尝试将十进制数转换为十六进制,内置的十六进制函数限制为 8 个字符,因此我不得不编写自己的函数,但是 VBScript 似乎将数字四舍五入到小数点后两位。 例如。 106681252129194
也许这是在这里问的错误问题,但我很好奇。我知道许多语言在被要求除以 0 时只会爆炸并失败,但是是否有任何编程语言可以智能地处理这个不可能的总和 - 如果是这样,它们会做什么?他们是继续处理,将 350
机器以一元形式取2个自然数(a, b)作为输入,输出整数商和整数除法的余数a/b。 磁带上的初始和最终状态是什么?功能图会是什么样子? 提前致谢。 最佳答案 此处使用的设计如下: 从表示 a 的磁带部
我想检查一个浮点值是否“接近”32 的倍数。例如64.1“几乎”可以被 32 整除,63.9 也是如此。 现在我正在这样做: #define NEARLY_DIVISIBLE 0.1f float o
我正在尝试将间隔*[a,b]*除以保存在浮点变量数组中的*npt*点。 我需要 *a* 和 *b* 始终出现在最终数组中,并且 *npt* 可以根据我的需要进行变化。 我尝试过: delta = (b
这个问题在这里已经有了答案: My computer thinks that signed int is smaller then -1? [duplicate] (3 个答案) sizeof()
在 C 中,如果我想将 int 除以 2,x%2应该像 (x%10)% 2 一样快 因为一个好的编译器只会看最后一点。但是在具有无限精度算术的语言中呢? 特别是,在 Haskell 中会更快(或者它们
哪个版本更快?x * 0.5 or x / 2 前段时间我在大学里有一门叫做计算机系统的类(class)。从那时起,我记得可以使用相对“简单”的逻辑门来实现两个值的乘法,但除法不是“ native ”
我正在尝试为 bignum 实现长除法。不幸的是,由于嵌入式编程的限制,我无法使用像 GMP 这样的库。此外,我想要学习如何实现它的智力练习。到目前为止,我已经使用任意长度的字节数组完成了加法和乘法(
由于许多 Project Euler 问题需要您多次进行可分性检查,因此我一直试图在 ZX81 中找出执行此任务的最快方法。基本的。 到目前为止,我已经比较过 (N/D)至 INT(N/D)检查,是否
运行代码后,我收到一个ZeroDivisionError!有人可以解释发生了什么吗?寻找bscore和gscore输入的平均值 bscore = 0 gscore = 0 bcount = 0 gco
我正在尝试用 Javascript 创建一个逻辑开关。目的是创建一个 Javascript 函数,该函数可用于触发按钮单击事件并打开或关闭特定的日历源。当您第一次单击按钮时,它应该加载日历提要,当第二
我正在尝试为bignums 实现长除法。不幸的是,由于嵌入式编程的限制,我无法使用像 GMP 这样的库。此外,我想要学习如何实现它的智力练习。到目前为止,我已经使用任意长度的字节数组完成了加法和乘法(
我是一名优秀的程序员,十分优秀!