數據擬合—MATLAB

1,多項式擬合: f=polyfit(x,y,n),對數據x,y進行n次項擬合,x,y要有相同的維度。 polyval(f,xi)%xi是插值變密集後的一組數組,一般繪圖用,計算出多項式的值 例子: x = linspace(0,4*pi,10); y = sin(x); Use polyfit to fit a 7th-degree polynomial to the points. p =
相關文章
相關標籤/搜索