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