tQRdct {rTensor2} | R Documentation |
Tensor QR Decomposition Using the Discrete Cosine Transform
Description
Performs a QR decomposition of 3-mode tensor using the discrete Cosine transform.
Usage
tQRdct(tnsr)
Arguments
tnsr |
: a 3-mode tensor |
Value
a Tensor-class object
If QR decomposition is performed on a x
x
tensor, the components in the returned value are:
Q: An orthogonal tensor ( x
x
).
R: An upper triangular tensor ( x
x
)
Author(s)
Kyle Caudle
Randy Hoover
Jackson Cates
Examples
T <- rand_tensor(modes=c(2,2,4))
print(tQR(T,"dct"))
[Package rTensor2 version 2.0.0 Index]