python多项式拟合:np.polyfit 和 np.polyld
python數(shù)據(jù)擬合主要可采用numpy庫,庫的安裝可直接用pip install numpy等。
?這段代碼可以直接用,但是要用自己的值
#多項(xiàng)式擬合 y = data_jiedian_2 #輸入自己的值 x = [i for i in range(29)]#輸入自己的值 xx = [i for i in range(29)] #xx可以設(shè)置大于x可以用來做預(yù)測 z1 = np.polyfit(x, y, 6) # 用6次多項(xiàng)式擬合,可改變多項(xiàng)式階數(shù); p1 = np.poly1d(z1) #得到多項(xiàng)式系數(shù),按照階數(shù)從高到低排列 print(p1) #顯示多項(xiàng)式 yvals=p1(xx) # 可直接使用yvals=np.polyval(z1,xxx) plt.plot(x, y, '*',label='original values') plt.plot(xx, yvals, 'r',label='polyfit values') plt.xlabel('x axis') plt.ylabel('y axis') plt.legend(loc=4) # 指定legend在圖中的位置,類似象限的位置 plt.title('polyfitting') plt.show()得到的多項(xiàng)式輸出為
最終畫出的圖為
多項(xiàng)式擬合數(shù)學(xué)表達(dá)
利用多項(xiàng)式函數(shù)擬合數(shù)據(jù)點(diǎn),多項(xiàng)式函數(shù)形式如下:
令
,
則多項(xiàng)式函數(shù)可化為線性代數(shù)形式:
?
1. 原始數(shù)據(jù):假如要擬合的數(shù)據(jù)yyy來自sin函數(shù),np.sin
import numpy as np import matplotlib.pyplot as pltxxx = np.arange(0, 1000) # x值,此時(shí)表示弧度 yyy = np.sin(xxx*np.pi/180) #函數(shù)值,轉(zhuǎn)化成度2. 測試不同階的多項(xiàng)式,例如7階多項(xiàng)式擬合,使用np.polyfit擬合,np.polyld得到多項(xiàng)式系數(shù)
z1 = np.polyfit(xxx, yyy, 7) # 用7次多項(xiàng)式擬合,可改變多項(xiàng)式階數(shù); p1 = np.poly1d(z1) #得到多項(xiàng)式系數(shù),按照階數(shù)從高到低排列 print(p1) #顯示多項(xiàng)式?3. 求對應(yīng)xxx的各項(xiàng)擬合函數(shù)值
yvals=p1(xxx) # 可直接使用yvals=np.polyval(z1,xxx)4. 繪圖如下
plt.plot(xxx, yyy, '*',label='original values') plt.plot(xxx, yvals, 'r',label='polyfit values') plt.xlabel('x axis') plt.ylabel('y axis') plt.legend(loc=4) # 指定legend在圖中的位置,類似象限的位置 plt.title('polyfitting') plt.show()?5.?np.polyfit函數(shù):采用的是最小二次擬合,numpy.polyfit(x,?y,?deg,?rcond=None,?full=False,?w=None,?cov=False),前三個(gè)參數(shù)是必須的
官方文檔:numpy.polyfit — NumPy v1.13 Manual
6. np.polyld函數(shù):得到多項(xiàng)式系數(shù),主要有三個(gè)參數(shù)
A one-dimensional polynomial class.A convenience class, used to encapsulate "natural" operations onpolynomials so that said operations may take on their customaryform in code (see Examples).Parameters----------c_or_r : array_likeThe polynomial's coefficients, in decreasing powers, or ifthe value of the second parameter is True, the polynomial'sroots (values where the polynomial evaluates to 0). For example,``poly1d([1, 2, 3])`` returns an object that represents:math:`x^2 + 2x + 3`, whereas ``poly1d([1, 2, 3], True)`` returnsone that represents :math:`(x-1)(x-2)(x-3) = x^3 - 6x^2 + 11x -6`.r : bool, optionalIf True, `c_or_r` specifies the polynomial's roots; the defaultis False.variable : str, optionalChanges the variable used when printing `p` from `x` to `variable`(see Examples).參數(shù)1表示:在沒有參數(shù)2(也就是參數(shù)2默認(rèn)False時(shí)),參數(shù)1是一個(gè)數(shù)組形式,且表示從高到低的多項(xiàng)式系數(shù)項(xiàng),例如參數(shù)1為[4,5,6]表示:
?參數(shù)2表示:為True時(shí),表示將參數(shù)1中的參數(shù)作為根來形成多項(xiàng)式,即參數(shù)1為[4,5,6]時(shí)表示:(x-4)(x-5)(x-6)=0,也就是:
?參數(shù)3表示:換參數(shù)標(biāo)識,用慣了x,可以用 t,s之類的
用法:
1. 直接進(jìn)行運(yùn)算,例如多項(xiàng)式的平方,分別得到
xx=np.poly1d([1,2,3]) print(xx) yy=xx**2 #求平方,或者用 xx * xx print(yy)?2. 求值:
yy(1) = 36
3. 求根:即等式為0時(shí)的未知數(shù)值
yy.r
4. 得到系數(shù)形成數(shù)組:
yy.c 為:array([ 1,? 4, 10, 12,? 9])
5. 返回最高次冪數(shù):
yy.order = 4
6. 返回系數(shù):
yy[0] —— 表示冪為0的系數(shù)
yy[1] —— 表示冪為1的系數(shù)
總結(jié)
以上是生活随笔為你收集整理的python多项式拟合:np.polyfit 和 np.polyld的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 锁定单个或多个单元格与解锁方法
- 下一篇: python基础绘图,教你玩转图表制作