add numerical recipes library
This commit is contained in:
14
lib/nr/k_and_r/recipes/atimes.c
Normal file
14
lib/nr/k_and_r/recipes/atimes.c
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
extern unsigned long ija[];
|
||||
extern double sa[];
|
||||
|
||||
void atimes(n,x,r,itrnsp)
|
||||
double r[],x[];
|
||||
int itrnsp;
|
||||
unsigned long n;
|
||||
{
|
||||
void dsprsax(),dsprstx();
|
||||
|
||||
if (itrnsp) dsprstx(sa,ija,x,r,n);
|
||||
else dsprsax(sa,ija,x,r,n);
|
||||
}
|
||||
Reference in New Issue
Block a user