Create a Tensor-class object from an array, matrix, or vector.
as.tensor(x, drop = FALSE)
a Tensor-class object
: an instance of array, matrix, or vector
: whether or not modes equal to 1 should be dropped
Kyle Caudle
Randy Hoover
Jackson Cates
Imported from rTensor package version 1.4.8.
#From vector
vec <- runif(3); vecT <- as.tensor(vec); vecT
#From matrix
mat <- matrix(runif(2*3),nrow=2,ncol=3)
matT <- as.tensor(mat); matT
#From array
indices <- c(2,3,4)
arr <- array(runif(prod(indices)), dim = indices)
arrT <- as.tensor(arr); arrT
Run the code above in your browser using DataLab