| 897 | } |
| 898 | |
| 899 | GMT_LOCAL void gmtplot_powx_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, double dval) { |
| 900 | unsigned int nx; |
| 901 | double *x = NULL; |
| 902 | |
| 903 | nx = gmtlib_pow_array (GMT, w, e, dval, 0, &x); |
| 904 | gmtplot_x_grid (GMT, PSL, s, n, x, nx); |
| 905 | if (x) gmt_M_free (GMT, x); |
| 906 | } |
| 907 | |
| 908 | GMT_LOCAL void gmtplot_powy_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, double dval) { |
| 909 | unsigned int ny; |
no test coverage detected