PyTorch
torch / torch
torch.cosh¶
-
torch.
cosh
(input, *, out=None) → Tensor¶ Returns a new tensor with the hyperbolic cosine of the elements of
input
.outi=cosh(inputi)- Parameters
input (Tensor) – the input tensor.
- Keyword Arguments
out (Tensor, optional) – the output tensor.
Example:
>>> a = torch.randn(4) >>> a tensor([ 0.1632, 1.1835, -0.6979, -0.7325]) >>> torch.cosh(a) tensor([ 1.0133, 1.7860, 1.2536, 1.2805])
此页内容是否对您有帮助
感谢反馈!