adj_rescale {picohdr} | R Documentation |
Infinite values will be clamped to the limits
adj_rescale(arr, lo, hi)
arr |
array or matrix |
lo , hi |
limits |
adjusted array
Other array adjustment functions:
adj_clamp()
,
adj_gamma()
,
adj_infinite()
,
adj_shift_negatives_global()
,
adj_shift_negatives_local()
arr <- array(1:24, c(4, 3, 2))
arr
adj_rescale(arr, 0, 1)