spacepy.toolbox.pmm¶
-
spacepy.toolbox.
pmm
(*args)[source]¶ print min and max of input arrays
- Parameters
- aarray-like
arbitrary number of input arrays (or lists)
- Returns
- outlist
list of min, max for each array
Examples
>>> import spacepy.toolbox as tb >>> from numpy import arange >>> tb.pmm(arange(10), arange(10)+3) [[0, 9], [3, 12]]