?? polin2.c
字號:
#define NRANSI
#include "nrutil.h"
void polin2(float x1a[], float x2a[], float **ya, int m, int n, float x1,
float x2, float *y, float *dy)
{
void polint(float xa[], float ya[], int n, float x, float *y, float *dy);
int j;
float *ymtmp;
ymtmp=vector(1,m);
for (j=1;j<=m;j++) {
polint(x2a,ya[j],n,x2,&ymtmp[j],dy);
}
polint(x1a,ymtmp,m,x1,y,dy);
free_vector(ymtmp,1,m);
}
#undef NRANSI
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -