arcsin

Graph.arcsin(x, *, name=None)

Calculate the element-wise arcsine of an object. This can be a number, an array, a tensor, or a time-dependent function in the form of a Pwc or an Stf.

Parameters

  • x (float or np.ndarray or Tensor or Pwc or Stf) – The object whose arcsine you want to calculate, xx
  • name (str or None , optional) – The name of the node. You can only provide a name if the object is not an Stf.

Returns

The element-wise arcsine, arcsinx\arcsin{x}, of the values or function you provided. Outputs will be in the range of [π/2,π/2][-\pi/2, \pi/2]

Return type

Tensor or Pwc or Stf

Was this useful?