牛頓插值—C語言實現

#include <stdio.h> void chashang(float fx[],float x[]) { int i,j,a,b=4; for (i=0;i<4;i++) { a=b; for (j=4;j>i;j--) { fx[j]=(fx[j]-fx[j-1])/(x[j]-x[--a]); printf("%.5f\n",fx[j]); }
相關文章
相關標籤/搜索