📄 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 + -