aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/common/2d.cube.size3/interp-dxx.compute.c
blob: 9764dbcacc12584aad1fd4fef1adb97267aac6f4 (plain)
1
2
3
4
5
6
7
8
9
10
result =
	coeff_dxx_m1_m1*data_m1_m1
	+ coeff_dxx_0_m1*data_0_m1
	+ coeff_dxx_p1_m1*data_p1_m1
	+ coeff_dxx_m1_0*data_m1_0
	+ coeff_dxx_0_0*data_0_0
	+ coeff_dxx_p1_0*data_p1_0
	+ coeff_dxx_m1_p1*data_m1_p1
	+ coeff_dxx_0_p1*data_0_p1
	+ coeff_dxx_p1_p1*data_p1_p1;