Minimum¶
This function allows you to compute the minimum of vectors, matrices, and tensors.
It provides functionality to compute axiswise, and elementwise minimums as well.
- omtools.std.min.min(*exprs, axis=None, rho=20.0)¶
This function can compute an elementwise or axiswise minimum of a single or multiple inputs.
- Parameters
- exprs: Variable(s)
The Variable(s) over which to take the minimum
- axis: int
The axis along which the minimum will be taken over
- rho: float
This is a smoothing parameter, which dictates how smooth or sharp the minimum is
Examples for all the possible use cases are provided below.