mindspore.ops.zeta
- mindspore.ops.zeta(input, other)[source]
Elemental-wise compute the Hurwitz zeta function values.
Warning
This is an experimental API that is subject to change or deletion.
- Parameters
- Returns
Tensor
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> z = mindspore.ops.zeta(mindspore.tensor([10.]), mindspore.tensor([1.])) >>> print(z) [1.0009946]