正割法是近似的牛頓切線法,把求導用斜率代替,用切線不斷逼近函數的單根。
示意圖
迭代的起點
推廣的公式
核心code,直接放上去
眼熟不
你可以編寫一個簡單的函數來測試這個功能
就是這么簡單,當然了字數這么少,還成為不了一篇原創文章。再寫一個小程序。
我們可以使用Matploatlib的繪圖功能模擬
引入
寫好要計算的函數
def Y(x):
global i
i = i+1
plt.plot([x, x], [0, (x**3-x-1)])
plt.plot([x, result(x)], [(x**3-x-1), 0])
temp = round(x-result(x), 5)
if(temp == 0.0):
print('正割法第', i, '次')
print('解得:', round(x, 5))
x = result(x)
y = (result(x)**3 - result(x) - 1)
plt.plot(x, y, ".")
plt.plot(x, y, "g-")
plt.annotate("(1.32472,1.32472)", xy=(result(x), (result(x)**3 - result(x) - 1)),
xytext=(result(x) - 0.5, (result(x)**3 - result(x) - 1) + 2), color='k', fontsize=10)
else:
Y(result(x))
Y(2.7)
x = 0
plt.title("secant method")
x = np.linspace(0, 3)
plt.xlim(0, 3) # 固定坐標
plt.ylim(-5, 20)
plt.plot(x, x**3-x-1, "b-")
plt.grid(True)
plt.plot([0, 3], [0, 0], "--")
plt.show()
審核編輯:劉清
-
算法
+關注
關注
23文章
4607瀏覽量
92840 -
python
+關注
關注
56文章
4792瀏覽量
84628
原文標題:Python實現所有算法-正割法(Secant)
文章出處:【微信號:TT1827652464,微信公眾號:云深之無跡】歡迎添加關注!文章轉載請注明出處。
發布評論請先 登錄
相關推薦
評論