add numerical recipes library
This commit is contained in:
17
lib/nr/ansi/recipes/pcshft.c
Normal file
17
lib/nr/ansi/recipes/pcshft.c
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
void pcshft(float a, float b, float d[], int n)
|
||||
{
|
||||
int k,j;
|
||||
float fac,cnst;
|
||||
|
||||
cnst=2.0/(b-a);
|
||||
fac=cnst;
|
||||
for (j=1;j<n;j++) {
|
||||
d[j] *= fac;
|
||||
fac *= cnst;
|
||||
}
|
||||
cnst=0.5*(a+b);
|
||||
for (j=0;j<=n-2;j++)
|
||||
for (k=n-2;k>=j;k--)
|
||||
d[k] -= cnst*d[k+1];
|
||||
}
|
||||
Reference in New Issue
Block a user