aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/common/2d.cube.size4/interp-dxx.compute.c
blob: 9ce20a1fd6d3afcbcad225a4336a3ed4c4bb03b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
result =
	coeff_dxx_m1_m1*data_m1_m1
	+ coeff_dxx_0_m1*data_0_m1
	+ coeff_dxx_p1_m1*data_p1_m1
	+ coeff_dxx_p2_m1*data_p2_m1
	+ coeff_dxx_m1_0*data_m1_0
	+ coeff_dxx_0_0*data_0_0
	+ coeff_dxx_p1_0*data_p1_0
	+ coeff_dxx_p2_0*data_p2_0
	+ coeff_dxx_m1_p1*data_m1_p1
	+ coeff_dxx_0_p1*data_0_p1
	+ coeff_dxx_p1_p1*data_p1_p1
	+ coeff_dxx_p2_p1*data_p2_p1
	+ coeff_dxx_m1_p2*data_m1_p2
	+ coeff_dxx_0_p2*data_0_p2
	+ coeff_dxx_p1_p2*data_p1_p2
	+ coeff_dxx_p2_p2*data_p2_p2;