spacepy.toolbox.normalize
spacepy.toolbox.rad2mlt
Enter search terms or a module, class or function name.
print min and max of input arrays
a : numpy array
input array
b : list arguments
some additional number of arrays
out : list
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]]