ee.Reducer.min
Creates a reducer that outputs the minimum value of its (first) input. If numInputs is greater than one, also outputs the corresponding values of the additional inputs.
Usage | Returns |
---|
ee.Reducer.min(numInputs) | Reducer |
Argument | Type | Details |
---|
numInputs | Integer, default: 1 | The number of inputs. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-13 UTC.
[null,null,["Last updated 2024-07-13 UTC."],[[["Computes the minimum value of the primary input and returns it as the output."],["If `numInputs` is specified and greater than 1, the reducer also outputs the corresponding values of the additional inputs associated with the minimum value of the primary input."],["The reducer is created using `ee.Reducer.min()` and accepts an optional `numInputs` argument to specify the number of inputs to consider."]]],["The `ee.Reducer.min()` function creates a reducer to find the minimum value from its inputs. It accepts an integer `numInputs` argument, defaulting to 1, specifying the number of inputs. If `numInputs` is greater than 1, the reducer outputs the minimum value along with the corresponding values of the additional inputs. It returns a reducer object.\n"]]