MCPcopy Create free account
hub / github.com/GenericMappingTools/gmt / gmtplot_logy_grid

Function gmtplot_logy_grid

src/gmt_plot.c:890–897  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

888}
889
890GMT_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
899GMT_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;

Callers 1

gmtplot_map_gridlinesFunction · 0.85

Calls 2

gmtlib_log_arrayFunction · 0.85
gmtplot_y_gridFunction · 0.85

Tested by

no test coverage detected