pyarrow.compute.acos_checked#

pyarrow.compute.acos_checked(x, /, *, memory_pool=None)#

Compute the inverse cosine.

Invalid input values raise an error; to return NaN instead, see “acos”.

Parameters:
xArray-like or scalar-like

Argument to compute function.

memory_poolpyarrow.MemoryPool, optional

If not passed, will allocate memory from the default memory pool.