Computes the absolute value of the input.
(self)
| 689 | return Image(function.SecondOrderFunction(body, signature).apply(args)) |
| 690 | |
| 691 | def abs(self) -> Image: |
| 692 | """Computes the absolute value of the input.""" |
| 693 | |
| 694 | return apifunction.ApiFunction.call_(self.name() + '.abs', self) |
| 695 | |
| 696 | def acos(self) -> Image: |
| 697 | """Computes the arccosine in radians of the input.""" |