add numerical recipes library
This commit is contained in:
11
lib/nr/k_and_r/recipes/copy.c
Normal file
11
lib/nr/k_and_r/recipes/copy.c
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
void copy(aout,ain,n)
|
||||
double **ain,**aout;
|
||||
int n;
|
||||
{
|
||||
int i,j;
|
||||
for (i=1;i<=n;i++)
|
||||
for (j=1;j<=n;j++)
|
||||
aout[j][i]=ain[j][i];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user