Numerical Analysis

Posted gearslogy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Numerical Analysis相关的知识,希望对你有一定的参考价值。

PART1  <求解方程>

1,二分法

技术分享图片
def bisect(f,a,b,TOL=0.000004):
    u_a = a
    u_b = b
    while(u_b-u_a)/2.0 > TOL:
        c = (u_a+u_b)/2.0
        if f(c) == 0:
            break
        if f(u_a)*f(c) < 0:
            u_b = c
        else:
            u_a = c

    u_c = (u_a + u_b) / 2.0
    return u_c

f = lambda x: x*x*x + x - 1
ret = bisect(f,-1.0,1.0)
print(ret)

print(f(ret))

        
    
View Code

 

以上是关于Numerical Analysis的主要内容,如果未能解决你的问题,请参考以下文章

为什么要学习Numerical Analysis

Python for Data Analysis | NumPy

26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段

MEME(Motif-based sequence analysis tools)使用说明

python 数据分析 Numpy(Numerical Python Basic)

Numerical and Text Labeling in Matplotlib Python