aminlocx()

This function returns the X location of minimum grid value over a spatial domain. The syntax is:

aminlocx(expr, xdim1, xdim2, ydim1, ydim2)

where:

For the X location of the global minimum, a shorthand may be used:

is the same as

Usage Notes

  1. This function will only work with GrADS version 2.0.2 or later.
  2. This function is more efficient that using nested minloc and min functions.
  3. Related function aminlocy will return the Y location of the minimum grid value.
  4. Use the amin function to retrieve the minimum value over the grid.
  5. If more than one grid box contains the minimum value, the location returned will be the first one encountered as the grid is scanned. The grid is scanned by rows from south to north, and each row is scanned from west to east.
  6. A similar set of functions exists for finding the maximum over an area: amax, amaxlocx, and amaxlocy.

Examples

Please see the documentation page for amin.