Computes the arcsine in radians of the input.
(self)
| 157 | return apifunction.ApiFunction.call_(self.name() + '.argmax', self) |
| 158 | |
| 159 | def asin(self) -> Array: |
| 160 | """Computes the arcsine in radians of the input.""" |
| 161 | |
| 162 | return apifunction.ApiFunction.call_(self.name() + '.asin', self) |
| 163 | |
| 164 | def atan(self) -> Array: |
| 165 | """Computes the arctangent in radians of the input.""" |