Python用二分法求平方根的案例
我就廢話不多說了,大家還是直接看代碼吧~
def sq2(x,e): e = e #誤差范圍 low= 0 high = max(x,1.0) #處理大于0小于1的數(shù) guess = (low + high) / 2.0 ctr = 1 while abs(guess**2 - x) > e and ctr<= 1000: if guess**2 < x: low = guess else: high = guess guess = (low + high) / 2.0 ctr += 1 print(guess)
補充:數(shù)值計算方法:二分法求解方程的根(偽代碼 python c/c++)
數(shù)值計算方法:
二分法求解方程的根偽代碼
fun (input x) return x^2+x-6newton (input a, input b, input e)//a是區(qū)間下界,b是區(qū)間上界,e是精確度 x <- (a + b) / 2 if abs(b - 1) < e: return x else: if fun(a) * fun(b) < 0: return newton(a, x, e) else: return newton(x, b, e)c/c++:
#include <iostream>#include <cmath>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 - 6def newton(a,b,e): x = (a + b)/2.0 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)print newton(-5, 0, 5e-5)
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。如有錯誤或未考慮完全的地方,望不吝賜教。
相關(guān)文章:
1. 如何在jsp界面中插入圖片2. .Net Core和RabbitMQ限制循環(huán)消費的方法3. jsp EL表達式詳解4. 淺談SpringMVC jsp前臺獲取參數(shù)的方式 EL表達式5. Jsp中request的3個基礎(chǔ)實踐6. .NET使用YARP通過編碼方式配置域名轉(zhuǎn)發(fā)實現(xiàn)反向代理7. ASP 連接Access數(shù)據(jù)庫的登陸系統(tǒng)8. CSS3實例分享之多重背景的實現(xiàn)(Multiple backgrounds)9. 解析原生JS getComputedStyle10. .NET6打包部署到Windows Service的全過程
