Converts a vector to a tensor.
// Returns a tensor reshaped from vector (1, 2, 3, 4)const t = Chalkboard.vect.toTensor(Chalkboard.vect.init(1, 2, 3, 4), 2, 2); Copy
// Returns a tensor reshaped from vector (1, 2, 3, 4)const t = Chalkboard.vect.toTensor(Chalkboard.vect.init(1, 2, 3, 4), 2, 2);
The vector
The size of the tensor
Converts a vector to a tensor.
Example