12 lines
213 B
C
12 lines
213 B
C
|
|
void addint(double **uf, double **uc, double **res, int nf)
|
|
{
|
|
void interp(double **uf, double **uc, int nf);
|
|
int i,j;
|
|
|
|
interp(res,uc,nf);
|
|
for (j=1;j<=nf;j++)
|
|
for (i=1;i<=nf;i++)
|
|
uf[i][j] += res[i][j];
|
|
}
|