pow
- Graph.pow(x, y, *, name=None)
Calculate the element-wise power between numbers, np.ndarrays, Tensors, Pwcs, or Stfs. You can also use the arithmetic operator
**
to calculate their power.Considering numbers and np.ndarrays as Tensors, if the two objects are of the same type, so is the returned object. If the objects have different types, Pwcs and Stfs can operate with a tensor (returning a Pwc or Stf, respectively).
This operation supports broadcasting between the different objects. When operating a tensor-like object with an Stf or a Pwc, the time dimension of the latter is ignored.
- Parameters
- Returns
The element-wise power \(x^y\).
- Return type
Warning
This function considers that the zeroth power of zero (\(0^0\)) is undefined. This means that you might see an error if you attempt to fetch an object that contains \(0^0\).