Returns a tensor with elements in a rank removed (pulled out).
The tensor
The rank
The index of the elements to pull
const result = Chalkboard.tens.pull([[[1, 2]], [[3, 4]]], 1, 0); // Removes the first outer slice Copy
const result = Chalkboard.tens.pull([[[1, 2]], [[3, 4]]], 1, 0); // Removes the first outer slice
Returns a tensor with elements in a rank removed (pulled out).