Learn R Programming

torch (version 0.0.2)

torch_histc: Histc

Description

Histc

Arguments

input

(Tensor) the input tensor.

bins

(int) number of histogram bins

min

(int) lower end of the range (inclusive)

max

(int) upper end of the range (inclusive)

out

(Tensor, optional) the output tensor.

histc(input, bins=100, min=0, max=0, out=None) -> Tensor

Computes the histogram of a tensor.

The elements are sorted into equal width bins between min and max. If min and max are both zero, the minimum and maximum values of the data are used.

Examples

Run this code
# NOT RUN {
if (torch_is_installed()) {

torch_histc(torch_tensor(c(1., 2, 1)), bins=4, min=0, max=3)
}
# }

Run the code above in your browser using DataLab