View source: R/gen-namespace.R
torch_heaviside | R Documentation |
Heaviside
torch_heaviside(self, values)
self |
(Tensor) the input tensor. |
values |
(Tensor) The values to use where |
Computes the Heaviside step function for each element in input
.
The Heaviside step function is defined as:
\mbox{{heaviside}}(input, values) = \begin{array}{ll}
0, & \mbox{if input < 0}\\
values, & \mbox{if input == 0}\\
1, & \mbox{if input > 0}
\end{array}
if (torch_is_installed()) {
input <- torch_tensor(c(-1.5, 0, 2.0))
values <- torch_tensor(c(0.5))
torch_heaviside(input, values)
values <- torch_tensor(c(1.2, -2.0, 3.5))
torch_heaviside(input, values)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.