Computes the arccosine in radians of the input.
(self)
| 116 | ) |
| 117 | |
| 118 | def acos(self) -> Array: |
| 119 | """Computes the arccosine in radians of the input.""" |
| 120 | |
| 121 | return apifunction.ApiFunction.call_(self.name() + '.acos', self) |
| 122 | |
| 123 | def add(self, right: _arg_types.Array) -> Array: |
| 124 | """On an element-wise basis, adds the first value to the second. |