Computes a Tucker decomposition with a single orthonormal factor matrix
shared by every mode via higher-order orthogonal iteration on the
symmetric subspace, mirroring the MATLAB Tensor Toolbox tucker_sym.
Arguments
- X
A symmetric Tensor (all modes the same size).
- r
Target subspace rank.
- tol
Convergence tolerance on change in core norm (default
1e-6).- maxiters
Maximum number of iterations (default
100).- init
"nvecs"(default) or an initialn x rmatrix with orthonormal columns.- symmetrize
Logical; if
TRUE, symmetrizeXfirst.