Learn R Programming

torch (version 0.8.1)

slc: Creates a slice

Description

Creates a slice object that can be used when indexing torch tensors.

Usage

slc(start, end, step = 1)

Arguments

start

(integer) starting index.

end

(integer) the last selected index.

step

(integer) the step between indexes.

Examples

Run this code
if (torch_is_installed()) {
x <- torch_randn(10)
x[slc(start = 1, end = 5, step = 2)]

}

Run the code above in your browser using DataLab