tEIGdct: Tensor Eigenvalue Decomposition Using the Discrete Cosine...

tEIGdctR Documentation

Tensor Eigenvalue Decomposition Using the Discrete Cosine Transform

Description

Performs a Eigenvalue decomposition of 3-mode tensor using the discrete Cosine transform.

Usage

tEIGdct(tnsr)

Arguments

tnsr

: a 3-mode tensor

Value

a Tensor-class object

If Eigenvalue decomposition is performed on a n x n x k tensor, the components in the returned value are:

P: A tensor of Eigenvectors (n x n x k)

D: An diagonal tensor of Eigenvalues (n x n x k)

Author(s)

Kyle Caudle kyle.caudle@sdsmt.edu

Examples

require(rTensor)
T <- rand_tensor(modes=c(2,2,4))
print(tEIGdct(T))

rTensor2 documentation built on Aug. 14, 2022, 9:05 a.m.

Related to tEIGdct in rTensor2...