SymIndx | R Documentation |
Vector symmetrizing a T-product of vectors of the same dimension d. Produces the same results as SymMatr
SymIndx(x, d, n)
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 |
A vector with the symmetrized version of x of dimension d^n
Gy. Terdik, Multivariate statistical methods - going beyond the linear, Springer 2021.Section 1.3.1 Symmetrization, p.14. (1.29)
Other Matrices and commutators:
EliminIndx()
,
EliminMatr()
,
QplicIndx()
,
QplicMatr()
,
SymMatr()
,
UnivMomCum()
a<-c(1,2)
b<-c(2,3)
c<-kronecker(kronecker(a,a),b)
## The symmetrized version of c is
SymIndx(c,2,3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.