Computes the arctangent in radians of the input.
(self)
| 162 | return apifunction.ApiFunction.call_(self.name() + '.asin', self) |
| 163 | |
| 164 | def atan(self) -> Array: |
| 165 | """Computes the arctangent in radians of the input.""" |
| 166 | |
| 167 | return apifunction.ApiFunction.call_(self.name() + '.atan', self) |
| 168 | |
| 169 | def atan2(self, right: _arg_types.Array) -> Array: |
| 170 | """Calculates the angle formed by the 2D vector [x, y]. |