SymIndx {MultiStatM} | R Documentation |
Symmetrizing vector
Description
Vector symmetrizing a T-product of vectors of the same dimension d. Produces the same results as SymMatr
Usage
SymIndx(x, d, n)
Arguments
x |
the vector to be symmetrized of dimension d^n |
d |
size of the single vectors in the product |
n |
power of the T-product |
Value
A vector with the symmetrized version of x of dimension d^n
References
Gy. Terdik, Multivariate statistical methods - going beyond the linear, Springer 2021.Section 1.3.1 Symmetrization, p.14. (1.29)
See Also
Other Matrices and commutators:
EliminIndx()
,
EliminMatr()
,
QplicIndx()
,
QplicMatr()
,
SymMatr()
,
UnivMomCum()
Examples
a<-c(1,2)
b<-c(2,3)
c<-kronecker(kronecker(a,a),b)
## The symmetrized version of c is
SymIndx(c,2,3)
[Package MultiStatM version 2.0.0 Index]