
NCL Home >
Documentation >
Functions >
General applied math,
Statistics
dim_min_n_Wrap
Computes the minimum of a variable's given dimensions at all other dimensions and retains metadata.
Available in version 6.1.0 and later.
Prototype
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl" ; This library is automatically loaded ; from NCL V6.2.0 onward. ; No need for user to explicitly load. function dim_min_n_Wrap ( x : numeric, dims [*] : integer ) return_val : typeof(x))
Arguments
xA variable of numeric type and any dimensionality.
dimsThe dimension(s) of x on which to determine the minimum values. Must be consecutive and monotonically increasing.
Description
This function is identical to dim_min_n, except the return value will have metadata added based on metadata attached to x. See the dim_min_n page for full documentation and examples.