tSVDdht | R Documentation |
Performs a tensor singular value decomposition on any 3-mode tensor using the discrete Harley transform.
tSVDdht(tnsr)
tnsr |
: a 3-mode tensor |
a Tensor-class object
If the SVD is performed on a m
x n
x k
tensor, the components in the returned value are:
U: The left singular value tensor object (m
x m
x k
)
V: The right singular value tensor object (n
x n
x k
)
S: A diagonal tensor (m
x n
x k
)
Kyle Caudle
Randy Hoover
Jackson Cates
T <- rand_tensor(modes=c(2,3,4))
print(tSVDdht(T))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.