| 888 | } |
| 889 | |
| 890 | GMT_LOCAL void gmtplot_logy_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, double dval) { |
| 891 | unsigned int ny; |
| 892 | double *y = NULL; |
| 893 | |
| 894 | ny = gmtlib_log_array (GMT, s, n, dval, &y); |
| 895 | gmtplot_y_grid (GMT, PSL, w, e, y, ny); |
| 896 | if (y) gmt_M_free (GMT, y); |
| 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; |
no test coverage detected