• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Python用二分法求平方根的案例

python 搞代码 4年前 (2022-01-08) 28次浏览 已收录 0个评论
文章目录[隐藏]

这篇文章主要介绍了Python用二分法求平方根的案例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

我就废话不多说了,大家还是直接看代码吧~

 def sq2(x,e): e = e #误差范围 low= 0 high = max(x,1.0) #处理大于0小于1的数 guess = (low + high) / 2.0 ctr = 1 while abs(guess**2 - x) > e and ctr<= 10<p style="color:transparent">来源gao!daima.com搞$代!码网</p>00: if guess**2 </div><p><strong>补充:数值计算方法:二分法求解方程的根(伪代码 python c/c++)</strong></p><p>数值计算方法:</p><h2>二分法求解方程的根</h2><p>伪代码</p><div class="gaodaimacode"><pre class="prettyprint linenums"> fun (input x) return x^2+x-6 newton (input a, input b, input e) //a是区间下界,b是区间上界,e是精确度 x <- (a + b) / 2 if abs(b - 1) <e: return x else: if fun(a) * fun(b) < 0: newton(a, x, e) newton(x, b, e)<pre></div><h2>c/c++:</h2><div class="gaodaimacode"><pre class="prettyprint linenums"> #include  #include  using namespace std; double fun (double x); double newton (double a, double b,double e); int main() { cout << newton(-5,0,0.5e-5); return 0; } double fun(double x) { return pow(x,2)+x-6; } double newton (double a, double b, double e) { double x; x = (a + b)/2; cout << x << endl; if ( abs(b-a) <e) return x; else if (fun(a)*fun(x) <0) return newton(a,x,e); else return newton(x,b,e); }

python:

 def fun(x): return x ** 2 + x - 6 def newton(a,b,e): x = (a + b)/2.0 if abs(b-a) <e: return x else: if fun(a) * fun(x) < 0: newton(a, x, e) newton(x, b, print newton(-5, 0, 5e-5)

以上就是Python用二分法求平方根的案例的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Python用二分法求平方根的案例
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址