fpoly.c
来自「Numerical Recipes Software 提供的算法子程序集」· C语言 代码 · 共 11 行
C
11 行
void fpoly(x,p,np)
float p[],x;
int np;
{
int j;
p[1]=1.0;
for (j=2;j<=np;j++) p[j]=p[j-1]*x;
}
/* (C) Copr. 1986-92 Numerical Recipes Software . */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?