aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/Hermite/2d.maple
diff options
context:
space:
mode:
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/Hermite/2d.maple')
-rw-r--r--src/GeneralizedPolynomial-Uniform/Hermite/2d.maple24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/Hermite/2d.maple b/src/GeneralizedPolynomial-Uniform/Hermite/2d.maple
index ad0d0a8..9b402ab 100644
--- a/src/GeneralizedPolynomial-Uniform/Hermite/2d.maple
+++ b/src/GeneralizedPolynomial-Uniform/Hermite/2d.maple
@@ -23,37 +23,37 @@ interp_2d_cube_order2
# I
coeffs_as_lc_of_data(%, posn_list_2d_size4);
-print_coeffs__lc_of_data(%, "coeffs_I->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_I->coeff_", "fp",
"2d.coeffs/2d.cube.order2/coeffs-I.compute.c");
# d/dx
simplify( diff(interp_2d_cube_order2,x) );
coeffs_as_lc_of_data(%, posn_list_2d_size4);
-print_coeffs__lc_of_data(%, "coeffs_dx->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dx->coeff_", "fp",
"2d.coeffs/2d.cube.order2/coeffs-dx.compute.c");
# d/dy
simplify( diff(interp_2d_cube_order2,y) );
coeffs_as_lc_of_data(%, posn_list_2d_size4);
-print_coeffs__lc_of_data(%, "coeffs_dy->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dy->coeff_", "fp",
"2d.coeffs/2d.cube.order2/coeffs-dy.compute.c");
# d^2/dx^2
simplify( diff(interp_2d_cube_order2,x,x) );
coeffs_as_lc_of_data(%, posn_list_2d_size4);
-print_coeffs__lc_of_data(%, "coeffs_dxx->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dxx->coeff_", "fp",
"2d.coeffs/2d.cube.order2/coeffs-dxx.compute.c");
# d^2/dxdy
simplify( diff(interp_2d_cube_order2,x,y) );
coeffs_as_lc_of_data(%, posn_list_2d_size4);
-print_coeffs__lc_of_data(%, "coeffs_dxy->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dxy->coeff_", "fp",
"2d.coeffs/2d.cube.order2/coeffs-dxy.compute.c");
# d^2/dy^2
simplify( diff(interp_2d_cube_order2,y,y) );
coeffs_as_lc_of_data(%, posn_list_2d_size4);
-print_coeffs__lc_of_data(%, "coeffs_dyy->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dyy->coeff_", "fp",
"2d.coeffs/2d.cube.order2/coeffs-dyy.compute.c");
################################################################################
@@ -78,37 +78,37 @@ interp_2d_cube_order3
# I
coeffs_as_lc_of_data(%, posn_list_2d_size6);
-print_coeffs__lc_of_data(%, "coeffs_I->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_I->coeff_", "fp",
"2d.coeffs/2d.cube.order3/coeffs-I.compute.c");
# d/dx
simplify( diff(interp_2d_cube_order3,x) );
coeffs_as_lc_of_data(%, posn_list_2d_size6);
-print_coeffs__lc_of_data(%, "coeffs_dx->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dx->coeff_", "fp",
"2d.coeffs/2d.cube.order3/coeffs-dx.compute.c");
# d/dy
simplify( diff(interp_2d_cube_order3,y) );
coeffs_as_lc_of_data(%, posn_list_2d_size6);
-print_coeffs__lc_of_data(%, "coeffs_dy->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dy->coeff_", "fp",
"2d.coeffs/2d.cube.order3/coeffs-dy.compute.c");
# d^2/dx^2
simplify( diff(interp_2d_cube_order3,x,x) );
coeffs_as_lc_of_data(%, posn_list_2d_size6);
-print_coeffs__lc_of_data(%, "coeffs_dxx->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dxx->coeff_", "fp",
"2d.coeffs/2d.cube.order3/coeffs-dxx.compute.c");
# d^2/dxdy
simplify( diff(interp_2d_cube_order3,x,y) );
coeffs_as_lc_of_data(%, posn_list_2d_size6);
-print_coeffs__lc_of_data(%, "coeffs_dxy->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dxy->coeff_", "fp",
"2d.coeffs/2d.cube.order3/coeffs-dxy.compute.c");
# d^2/dy^2
simplify( diff(interp_2d_cube_order3,y,y) );
coeffs_as_lc_of_data(%, posn_list_2d_size6);
-print_coeffs__lc_of_data(%, "coeffs_dyy->coeffs_", "fp",
+print_coeffs__lc_of_data(%, "coeffs_dyy->coeff_", "fp",
"2d.coeffs/2d.cube.order3/coeffs-dyy.compute.c");
################################################################################