|
|
|
|
Plane waves in three dimensions |
for (i=i2=0; i2 < n2; i2++) {
for (i1=0; i1 < n1; i1++, i++) {
if( adj) scale[i2] += sdata[i] * data[i];
else sdata[i] += scale[i2] * data[i];
}
}
|
|
|
|
|
Plane waves in three dimensions |